This commit is contained in:
Ivan Kirilov Dimitrov 2024-07-06 12:58:22 +02:00
parent 9286ff5044
commit c6d1daba13
No known key found for this signature in database
GPG Key ID: 0BDAD4B211C49294
2 changed files with 16 additions and 19 deletions

View File

@ -1,3 +1,18 @@
toplevel@{ inputs, withSystem, config, ... }:
{
imports = [ ./ivand ];
flake.homeConfigurations.ivand = withSystem "x86_64-linux" (ctx@{ pkgs, ... }:
inputs.home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules =
let
mods = config.flake.homeManagerModules;
in
[
mods.base
mods.shell
mods.util
mods.swayland
mods.web
];
});
}

View File

@ -1,18 +0,0 @@
toplevel@{ inputs, withSystem, config, ... }:
{
flake.homeConfigurations.ivand = withSystem "x86_64-linux" (ctx@{ pkgs, ... }:
inputs.home-manager.lib.homeManagerConfiguration {
inherit pkgs;
modules =
let
mods = config.flake.homeManagerModules;
in
[
mods.base
mods.shell
mods.util
mods.swayland
mods.web
];
});
}