1
0
nuc-configurations/configuration.nix

17 lines
339 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 = {
enable = true;
flake = "git+https://git.sense-t.eu.org/NixOS/gpd-configurations#gpd";
};
}