nix/hosts/default.nix

29 lines
725 B
Nix
Raw Normal View History

2024-08-01 21:22:47 +02:00
{ inputs, ... }:
{
"desktop" = inputs.nixpkgs.lib.nixosSystem {
2024-09-27 22:28:42 +02:00
specialArgs = { inherit inputs; hostname = "desktop"; };
2024-08-01 21:22:47 +02:00
modules = [
./desktop
../modules
inputs.home-manager.nixosModules.home-manager
];
};
"laptop" = inputs.nixpkgs.lib.nixosSystem {
2024-09-27 22:28:42 +02:00
specialArgs = { inherit inputs; hostname = "laptop"; };
modules = [
./laptop
../modules
inputs.home-manager.nixosModules.home-manager
];
};
2024-08-10 01:03:29 +02:00
"rpi" = inputs.nixpkgs.lib.nixosSystem {
2024-09-27 22:28:42 +02:00
specialArgs = { inherit inputs; hostname = "rpi"; };
2024-08-10 01:03:29 +02:00
modules = [
./rpi
../modules
inputs.home-manager.nixosModules.home-manager
inputs.nixos-hardware.nixosModules.raspberry-pi-4
];
};
}