This commit adds the module I made for hjem (https://github.com/feel-co/hjem/pull/16). Needs to be removed after it gets merged.
25 lines
488 B
Nix
25 lines
488 B
Nix
{inputs, ...}: let
|
|
lib' = import ../lib inputs.nixpkgs.lib;
|
|
mkSystem = args:
|
|
inputs.nixpkgs.lib.nixosSystem {
|
|
specialArgs = {inherit inputs lib';};
|
|
modules =
|
|
(args.modules or [])
|
|
++ [../modules];
|
|
};
|
|
in {
|
|
vamos = mkSystem {
|
|
modules = [
|
|
./vamos
|
|
inputs.nixos-hardware.nixosModules.framework-13-7040-amd
|
|
];
|
|
};
|
|
|
|
solaire = mkSystem {
|
|
modules = [./solaire];
|
|
};
|
|
|
|
anastacia = mkSystem {
|
|
modules = [./anastacia];
|
|
};
|
|
}
|