Configuration for pang13
This commit is contained in:
parent
7734fbcd64
commit
f342ac6f9d
10 changed files with 138 additions and 6 deletions
|
@ -45,6 +45,29 @@ in
|
|||
];
|
||||
};
|
||||
|
||||
pang13 = lib.nixosSystem {
|
||||
inherit system;
|
||||
specialArgs = { inherit user; };
|
||||
modules = configImports ++ [
|
||||
./pang13
|
||||
./desktop.nix
|
||||
{
|
||||
boot.loader.grub.gfxmodeEfi = "1920x1080";
|
||||
networking.hostName = "pang13";
|
||||
}
|
||||
home-manager.nixosModules.home-manager {
|
||||
home-manager = {
|
||||
useUserPackages = true;
|
||||
extraSpecialArgs = hmArgs;
|
||||
users.${user} = {
|
||||
imports = desktopHmImports ++ [
|
||||
(import ./pang13/home.nix)
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
x220 = lib.nixosSystem {
|
||||
inherit system;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue