Initial commit

This commit is contained in:
2020-05-30 14:07:02 +02:00
commit 0eecc461c9
9 changed files with 319 additions and 0 deletions

17
configuration.nix Normal file
View File

@ -0,0 +1,17 @@
{ 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).
system.stateVersion = "20.03"; # Did you read the comment?
}