1
1
Fork 0

Enable flakes

This commit is contained in:
Jaculabilis 2022-11-27 01:40:04 +00:00
parent 4a777e64e9
commit 4d56cf1cda
1 changed files with 9 additions and 1 deletions

View File

@ -24,7 +24,15 @@
}; };
boot.kernelParams = ["console=ttyS0"]; boot.kernelParams = ["console=ttyS0"];
nix.package = pkgs.nixFlakes; nix = {
package = pkgs.nixFlakes;
maxJobs = 2;
extraOptions = ''
experimental-features = nix-command flakes
'';
};
swapDevices = [ { device = "/swap"; size = 1024; } ];
networking.hostName = "empyrean"; networking.hostName = "empyrean";