mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-19 17:28:49 +02:00
chore: Simplify example config imports
This commit is contained in:
parent
648bdf156a
commit
db0217a3e7
@ -10,13 +10,11 @@ let
|
||||
inherit (builtins) attrValues;
|
||||
in
|
||||
{
|
||||
imports = attrValues {
|
||||
inherit (nix-config.nixosModules) system shell desktop;
|
||||
|
||||
customConfig = {
|
||||
modules.system.username = "asuna";
|
||||
};
|
||||
};
|
||||
imports = with nix-config.nixosModules; [
|
||||
system
|
||||
shell
|
||||
desktop
|
||||
];
|
||||
|
||||
home-manager.sharedModules =
|
||||
attrValues nix-config.homeModules
|
||||
@ -50,4 +48,6 @@ in
|
||||
});
|
||||
})
|
||||
];
|
||||
|
||||
modules.system.username = "asuna";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user