Flake : Add basic system.
This commit is contained in:
parent
aca52517b9
commit
195f1a774a
|
@ -169,6 +169,14 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
# List of all hosts bellow.
|
# List of all hosts bellow.
|
||||||
|
nixosConfigurations.basic = self.mkHost {
|
||||||
|
hostname = "basic";
|
||||||
|
system = "x86_64-linux";
|
||||||
|
modules = [
|
||||||
|
({ pkgs, ... }: { boot.kernelPackages = nixpkgs.lib.mkForce pkgs.linuxPackages; })
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
nixosConfigurations.dasha = self.mkHost {
|
nixosConfigurations.dasha = self.mkHost {
|
||||||
hostname = "dasha";
|
hostname = "dasha";
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
Loading…
Reference in a new issue