nixos-configuration/configuration.nix

18 lines
668 B
Nix
Raw Normal View History

2020-05-30 14:07:02 +02:00
{ config, pkgs, ... }:
{
imports =
[ # Include the results of the hardware scan.
./hardware-configuration-current.nix
./role-current.nix
];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
2021-12-29 13:06:12 +01:00
system.stateVersion = "21.11"; # Did you read the comment?
2020-05-30 14:07:02 +02:00
}