rearrange for modularity
This commit is contained in:
parent
48b18aa671
commit
71ec2a349f
8 changed files with 20 additions and 19 deletions
26
flake.nix
26
flake.nix
|
|
@ -9,18 +9,20 @@
|
|||
{
|
||||
nixosConfigurations = {
|
||||
default = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs;};
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./configuration.nix
|
||||
];
|
||||
};
|
||||
};
|
||||
iso_cath = nixpkgs.lib.nixosSystem {
|
||||
specialArgs = {inherit inputs;};
|
||||
modules = [
|
||||
./iso/sl1_cath.nix
|
||||
];
|
||||
specialArgs = {inherit inputs;};
|
||||
system = "x86_64-linux";
|
||||
modules = [
|
||||
./devices/xps13/configuration.nix
|
||||
./modules
|
||||
];
|
||||
};
|
||||
# pi = nixpkgs.lib.nixosSystem {
|
||||
# specialArgs = {inherit inputs;};
|
||||
# system = "aarch64-linux";
|
||||
# modules = [
|
||||
# ./devices/pi/configuration.nix
|
||||
# ];
|
||||
# };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue