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