This repository has been archived on 2023-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
gpd-configurations/configuration.nix

17 lines
367 B
Nix
Raw Normal View History

# NixOS configurations file.
2023-07-04 08:53:01 +00:00
{ config, pkgs, lib, ... }: {
system.stateVersion = "23.05";
2023-07-04 08:53:01 +00:00
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
2023-07-04 08:53:01 +00:00
# User custom configurations.
./global
];
2023-06-26 13:18:02 +00:00
system.autoUpgrade = {
enable = true;
flake = "git+https://git.sense-t.eu.org/NixOS/gpd-configurations#gpd";
};
2023-07-04 08:53:01 +00:00
}