From 2c4312d9cdf6e2992fce9173b3dec426ec9f8c21 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Thu, 3 Aug 2017 21:58:00 +0200 Subject: [PATCH] Add template configuration.nix --- configuration.nix.template | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 configuration.nix.template diff --git a/configuration.nix.template b/configuration.nix.template new file mode 100644 index 0000000..bb7d4b7 --- /dev/null +++ b/configuration.nix.template @@ -0,0 +1,14 @@ +{ config, pkgs, ... }: + +{ + nixpkgs.config.allowUnfree = true; + + imports = + [ + ./hardware-configuration.nix + /home/sven/projects/nixrc/systems/desktop.nix + ]; + + # The NixOS release to be compatible with for stateful data such as databases. + system.stateVersion = "17.03"; +}