mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-15 00:36:25 +00:00
30 lines
1,019 B
Nix
30 lines
1,019 B
Nix
|
{ inputs, outputs, stateVersion, ... }: {
|
||
|
# Helper function for generating home-manager configs
|
||
|
mkHome = { hostname, username, desktop ? null, platform ? "x86_64-linux" }: inputs.home-manager.lib.homeManagerConfiguration {
|
||
|
pkgs = inputs.nixpkgs.legacyPackages.${platform};
|
||
|
extraSpecialArgs = {
|
||
|
inherit inputs outputs desktop hostname platform username stateVersion;
|
||
|
};
|
||
|
modules = [ "../home/${username}/${hostname}.nix" ];
|
||
|
};
|
||
|
|
||
|
# Helper function for generating host configs
|
||
|
mkHost = { hostname, username, desktop ? null, installer ? null }: inputs.nixpkgs.lib.nixosSystem {
|
||
|
specialArgs = {
|
||
|
inherit inputs outputs desktop hostname username stateVersion;
|
||
|
};
|
||
|
modules = [
|
||
|
"../nixos/${hostname}"
|
||
|
inputs.agenix.nixosModules.default
|
||
|
] ++ (inputs.nixpkgs.lib.optionals (installer != null) [ installer ]);
|
||
|
};
|
||
|
|
||
|
forAllSystems = inputs.nixpkgs.lib.genAttrs [
|
||
|
"aarch64-linux"
|
||
|
"i686-linux"
|
||
|
"x86_64-linux"
|
||
|
"aarch64-darwin"
|
||
|
"x86_64-darwin"
|
||
|
];
|
||
|
}
|