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";
|
|
|
|
};
|
|
|
|
}
|