NixOS 23.11 and Flaking

This commit is contained in:
Greg Hellings
2023-11-28 10:30:17 -06:00
parent d472bf08d5
commit 2b7d613737
13 changed files with 252 additions and 3 deletions
+8 -1
View File
@@ -6,6 +6,8 @@
#PROVIDER_PLACEHOLDER
];
system.stateVersion = "23.05";
# Packages installed on the whole system
environment.systemPackages = with pkgs; [
curl
@@ -54,5 +56,10 @@
useXkbConfig = true;
};
system.stateVersion = "23.05";
nix = {
package = pkgs.nixFlakes;
settings = {
experimental-features = "nix-command flakes";
};
};
}