avoid repeating code and add common modules in function
This commit is contained in:
parent
1f69c17ae2
commit
0ec0ecec20
1 changed files with 20 additions and 28 deletions
48
flake.nix
48
flake.nix
|
@ -23,45 +23,37 @@
|
||||||
outputs = { nixpkgs, home-manager, nixvim, sops-nix, shells, ... }@inputs:
|
outputs = { nixpkgs, home-manager, nixvim, sops-nix, shells, ... }@inputs:
|
||||||
let
|
let
|
||||||
username = "nezia";
|
username = "nezia";
|
||||||
|
system = "x86_64-linux";
|
||||||
|
|
||||||
|
commonModules = hostname: [
|
||||||
|
./hosts/${hostname}
|
||||||
|
sops-nix.nixosModules.sops
|
||||||
|
home-manager.nixosModules.home-manager
|
||||||
|
{
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
home-manager.sharedModules = [ nixvim.homeManagerModules.nixvim ];
|
||||||
|
home-manager.extraSpecialArgs = { inherit inputs; };
|
||||||
|
}
|
||||||
|
{ _module.args = { inherit hostname username; }; }
|
||||||
|
];
|
||||||
in {
|
in {
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
vamos =
|
vamos =
|
||||||
let hostname = "vamos";
|
let hostname = "vamos";
|
||||||
in nixpkgs.lib.nixosSystem {
|
in nixpkgs.lib.nixosSystem {
|
||||||
|
system = system;
|
||||||
system = "x86_64-linux";
|
modules = commonModules hostname ++ [
|
||||||
|
{ home-manager.users.nezia = import ./home/laptop; }
|
||||||
modules = [
|
|
||||||
./hosts/${hostname}
|
|
||||||
sops-nix.nixosModules.sops
|
|
||||||
home-manager.nixosModules.home-manager
|
|
||||||
{
|
|
||||||
home-manager.useGlobalPkgs = true;
|
|
||||||
home-manager.useUserPackages = true;
|
|
||||||
home-manager.sharedModules = [ nixvim.homeManagerModules.nixvim ];
|
|
||||||
home-manager.users.nezia = import ./home/laptop;
|
|
||||||
home-manager.extraSpecialArgs = { inherit inputs; };
|
|
||||||
}
|
|
||||||
{ _module.args = { inherit hostname username; }; }
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
solaire = let
|
solaire = let
|
||||||
hostname = "solaire";
|
hostname = "solaire";
|
||||||
in nixpkgs.lib.nixosSystem {
|
in nixpkgs.lib.nixosSystem {
|
||||||
system = "x86_64-linux";
|
system = system;
|
||||||
modules = [
|
modules = commonModules hostname ++ [
|
||||||
./hosts/${hostname}
|
{ home-manager.users.nezia = import ./home/desktop; }
|
||||||
sops-nix.nixosModules.sops
|
|
||||||
home-manager.nixosModules.home-manager
|
|
||||||
{
|
|
||||||
home-manager.useGlobalPkgs = true;
|
|
||||||
home-manager.useUserPackages = true;
|
|
||||||
home-manager.sharedModules = [ nixvim.homeManagerModules.nixvim ];
|
|
||||||
home-manager.users.nezia = import ./home/desktop;
|
|
||||||
home-manager.extraSpecialArgs = { inherit inputs; };
|
|
||||||
}
|
|
||||||
{ _module.args = { inherit hostname username; }; }
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue