1
0
nuc-configurations/configuration.nix

17 lines
344 B
Nix
Raw Normal View History

2023-09-25 00:15:15 +00:00
# NixOS configurations file.
2023-09-25 01:11:58 +00:00
{
2023-09-25 00:15:15 +00:00
system.stateVersion = "23.05";
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
# User custom configurations.
./global
];
system.autoUpgrade = {
2023-09-30 08:22:10 +00:00
enable = false;
flake = "git+https://git.sense-t.eu.org/NixOS/nuc-configurations#default";
2023-09-25 00:15:15 +00:00
};
}