1
0
nuc-configurations/configuration.nix
2023-09-30 08:22:10 +00:00

17 lines
344 B
Nix

# NixOS configurations file.
{
system.stateVersion = "23.05";
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
# User custom configurations.
./global
];
system.autoUpgrade = {
enable = false;
flake = "git+https://git.sense-t.eu.org/NixOS/nuc-configurations#default";
};
}