1
Fork 0

Move to nixos-23.11

This commit is contained in:
Matei Adriel 2023-12-10 12:55:54 +01:00
parent 659fb33ca7
commit 38a7932c2c
No known key found for this signature in database
25 changed files with 1001 additions and 543 deletions
hosts/nixos/common/global

View file

@ -29,7 +29,13 @@
settings = {
# Enable flakes and new 'nix' command
experimental-features = [ "nix-command" "flakes" "repl-flake" ];
experimental-features = [
"nix-command"
"flakes"
"repl-flake"
"auto-allocate-uids"
# "configurable-impure-env"
];
# Disable warning when rebuilding before commiting
warn-dirty = false;
@ -39,7 +45,6 @@
# TODO: what is a trusted user?
trusted-users = [ "root" "@wheel" ];
};
};
}