17 lines
367 B
Nix
17 lines
367 B
Nix
|
# NixOS configurations file.
|
||
|
{ config, pkgs, lib, ... }: {
|
||
|
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";
|
||
|
};
|
||
|
}
|