nixdots/hosts/default.nix

36 lines
825 B
Nix
Raw Normal View History

{ inputs, ... }:
2024-03-23 22:06:58 +00:00
let
inherit (inputs) self;
2024-02-28 22:40:50 +00:00
inherit (inputs.nixpkgs) lib;
2024-03-21 21:33:38 +00:00
# A list of shared modules that ALL systems need
shared = [
../system
2024-03-23 22:06:58 +00:00
../home
2024-03-21 21:33:38 +00:00
../options
];
2024-03-23 22:06:58 +00:00
in
{
2024-04-07 12:38:24 +00:00
herugrim = lib.nixosSystem {
system = "x86_64-linux";
2024-06-10 19:58:06 +00:00
specialArgs = { inherit lib inputs self; };
2024-04-07 12:38:24 +00:00
modules = [
./herugrim
inputs.home-manager.nixosModules.home-manager
2024-04-07 22:24:12 +00:00
inputs.impermanence.nixosModules.impermanence
2024-04-12 16:25:26 +00:00
inputs.lanzaboote.nixosModules.lanzaboote
2024-04-07 12:38:24 +00:00
] ++ shared;
};
2024-06-19 14:10:37 +00:00
voyager = lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit lib inputs self; };
modules = [
./voyager
inputs.home-manager.nixosModules.home-manager
inputs.impermanence.nixosModules.impermanence
inputs.lanzaboote.nixosModules.lanzaboote
] ++ shared;
};
2024-02-28 18:36:12 +00:00
}