nix/hosts/default.nix

29 lines
664 B
Nix
Raw Permalink Normal View History

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