First test of all machines
This commit is contained in:
parent
b963380a0a
commit
1d0209fac3
16 changed files with 268 additions and 73 deletions
15
flake.nix
15
flake.nix
|
|
@ -41,7 +41,10 @@
|
|||
|
||||
nixosConfigurations = {
|
||||
luna = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
specialArgs = {
|
||||
inherit inputs outputs;
|
||||
headless = false;
|
||||
};
|
||||
modules = [
|
||||
./machines/luna/configuration.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
|
|
@ -52,7 +55,10 @@
|
|||
];
|
||||
};
|
||||
terra = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
specialArgs = {
|
||||
inherit inputs outputs;
|
||||
headless = false;
|
||||
};
|
||||
modules = [
|
||||
./machines/terra/configuration.nix
|
||||
home-manager.nixosModules.home-manager
|
||||
|
|
@ -63,7 +69,10 @@
|
|||
];
|
||||
};
|
||||
solis = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs outputs;};
|
||||
specialArgs = {
|
||||
inherit inputs outputs;
|
||||
headless = true;
|
||||
};
|
||||
modules = [
|
||||
./machines/solis/configuration.nix
|
||||
sops-nix.nixosModules.sops
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue