configuration.nix/home/configs/default.nix

20 lines
430 B
Nix
Raw Permalink Normal View History

2024-07-06 12:58:22 +02:00
toplevel@{ inputs, withSystem, config, ... }:
{
2024-07-06 12:58:22 +02:00
flake.homeConfigurations.ivand = withSystem "x86_64-linux" (ctx@{ pkgs, ... }:
inputs.home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules =
let
mods = config.flake.homeManagerModules;
in
2024-07-09 13:22:30 +02:00
with mods; [
base
2024-07-10 11:17:08 +02:00
ivand
2024-07-09 13:22:30 +02:00
shell
util
swayland
web
2024-07-06 12:58:22 +02:00
];
});
}