move all machines into a subdirectory
This commit is contained in:
@@ -27,17 +27,17 @@
|
|||||||
outputs = { self, nixpkgs, pkgs-gitea, pkgs-mobile, mobile-nixos, home-manager }: {
|
outputs = { self, nixpkgs, pkgs-gitea, pkgs-mobile, mobile-nixos, home-manager }: {
|
||||||
nixosConfigurations.uninsane = self.decl-machine {
|
nixosConfigurations.uninsane = self.decl-machine {
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
extraModules = [ ./uninsane ];
|
extraModules = [ ./machines/uninsane ];
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosConfigurations.desko = self.decl-machine {
|
nixosConfigurations.desko = self.decl-machine {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
extraModules = [ ./desko ];
|
extraModules = [ ./machines/desko ];
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosConfigurations.lappy = self.decl-machine {
|
nixosConfigurations.lappy = self.decl-machine {
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
extraModules = [ ./lappy ];
|
extraModules = [ ./machines/lappy ];
|
||||||
};
|
};
|
||||||
|
|
||||||
# this produces a EFI-bootable .img file (GPT with / and /boot).
|
# this produces a EFI-bootable .img file (GPT with / and /boot).
|
||||||
@@ -52,8 +52,8 @@
|
|||||||
specialArgs = { home-manager = home-manager; };
|
specialArgs = { home-manager = home-manager; };
|
||||||
modules = [
|
modules = [
|
||||||
./configuration.nix
|
./configuration.nix
|
||||||
./lappy
|
|
||||||
./modules
|
./modules
|
||||||
|
./machines/lappy
|
||||||
./image.nix
|
./image.nix
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user