flocon/hosts/default.nix
Anthony Rodriguez f6fedf748f
treewide: add environment module from hjem PR
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.
2025-02-13 16:42:58 +01:00

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];
};
}