rearrange for modularity
This commit is contained in:
parent
48b18aa671
commit
71ec2a349f
8 changed files with 20 additions and 19 deletions
|
Before Width: | Height: | Size: 858 KiB After Width: | Height: | Size: 858 KiB |
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
|
||||
# ];
|
||||
# };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +0,0 @@
|
|||
{ pkgs, modulesPath, ... }: {
|
||||
import = [
|
||||
"${modulesPath}/installer/cd-dvd/installation-cd-minimal.nix"
|
||||
];
|
||||
|
||||
nixpkgs.hostPlatform = "x86_64-linux";
|
||||
}
|
||||
5
modules/default.nix
Normal file
5
modules/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
|
||||
imports = [
|
||||
];
|
||||
}
|
||||
1
result
Symbolic link
1
result
Symbolic link
|
|
@ -0,0 +1 @@
|
|||
/nix/store/a3swrfqfbvw6imdmgb2rarkz9bq5xkbg-nixos-24.11.20240616.b60ebf5-x86_64-linux.iso
|
||||
Loading…
Add table
Add a link
Reference in a new issue