nix/lib/default.nix

31 lines
1.2 KiB
Nix
Raw Normal View History

2023-08-23 14:39:51 +02:00
{ inputs, outputs, stateVersion, hmStateVersion, ... }: {
2023-08-25 12:07:54 +02:00
2023-08-23 09:53:29 +02:00
# Helper function for generating home-manager configs
mkHome = { hostname, username, desktop ? null, platform ? "x86_64-linux" }: inputs.home-manager.lib.homeManagerConfiguration {
2023-08-23 12:47:21 +02:00
pkgs = inputs.nixpkgs.legacyPackages.${platform};
2023-08-25 12:07:54 +02:00
extraSpecialArgs = { inherit inputs outputs desktop hostname platform username hmStateVersion; };
modules = [
../home-manager
inputs.doom-emacs.hmModule
];
2023-08-23 09:53:29 +02:00
};
# Helper function for generating host configs
2023-08-25 01:02:10 +02:00
mkHost = { hostname, username, desktop ? null, installer ? null, gpu ? null }: inputs.nixpkgs.lib.nixosSystem {
2023-08-25 12:07:54 +02:00
specialArgs = { inherit inputs outputs desktop hostname username stateVersion gpu; };
2023-08-23 09:53:29 +02:00
modules = [
2023-08-23 10:11:24 +02:00
../nixos
2023-08-23 12:45:34 +02:00
inputs.sops-nix.nixosModules.sops # Handle secrets
inputs.lanzaboote.nixosModules.lanzaboote # SecureBoot Configuration
2023-08-23 15:46:54 +02:00
inputs.nur.nixosModules.nur # NixOS User Repository
2023-08-23 09:53:29 +02:00
] ++ (inputs.nixpkgs.lib.optionals (installer != null) [ installer ]);
};
forAllSystems = inputs.nixpkgs.lib.genAttrs [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
2023-08-25 12:07:54 +02:00
}