configuration.nix/home/configs/ivand/default.nix

19 lines
428 B
Nix
Raw Normal View History

2024-07-05 13:29:07 +02:00
toplevel@{ inputs, withSystem, config, ... }:
{
2024-07-04 08:38:33 +02:00
flake.homeConfigurations.ivand = withSystem "x86_64-linux" (ctx@{ pkgs, ... }:
inputs.home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules =
let
2024-07-05 13:29:07 +02:00
mods = config.flake.homeManagerModules;
in
[
2024-07-05 16:40:04 +02:00
mods.base
2024-07-05 18:19:34 +02:00
mods.shell
mods.util
mods.swayland
mods.web
];
});
}