Changing file structure to prepare for ISO
This commit is contained in:
parent
635a37bac0
commit
4122a52949
12 changed files with 37 additions and 22 deletions
30
flake.nix
30
flake.nix
|
|
@ -10,15 +10,27 @@
|
|||
};
|
||||
|
||||
outputs = { self, nixpkgs, nixos-hardware, nix-flatpak, ... }@attrs: {
|
||||
nixosConfigurations.lyes-pc = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = attrs;
|
||||
modules = [
|
||||
./configuration/configuration.nix
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
./hardware/lyes-pc/configuration.nix
|
||||
nixos-hardware.nixosModules.lenovo-thinkpad-x1-extreme-gen4
|
||||
];
|
||||
nixosConfigurations = {
|
||||
lyes-pc = nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
specialArgs = attrs;
|
||||
modules = [
|
||||
./general/configuration.nix
|
||||
nix-flatpak.nixosModules.nix-flatpak
|
||||
./specific/lyes-pc/configuration.nix
|
||||
nixos-hardware.nixosModules.lenovo-thinkpad-x1-extreme-gen4
|
||||
];
|
||||
};
|
||||
|
||||
# iso = nixpkgs.lib.nixosSystem {
|
||||
# system = "x86_64-linux";
|
||||
# specialArgs = attrs;
|
||||
# modules = [
|
||||
# ./general/configuration.nix
|
||||
# nix-flatpak.nixosModules.nix-flatpak
|
||||
# ./specific/iso/configuration.nix
|
||||
# ];
|
||||
# };
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue