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"; +}