Commit bf165fd7123f

Vincent Demeester <vincent@sbr.pm>
2016-09-17 15:37:17
Update list of packages and add a local-configuration thingie
+ updates the README to explain why
1 parent 7fed74a
.gitignore
@@ -1,2 +1,3 @@
+local-configuration.nix
 hardware-configuration.nix
 result
configuration.nix
@@ -15,6 +15,7 @@
 			./gui.nix
 			./users.nix
 			./packages.nix
+			./local-configuration.nix
 		];
 
 	boot.loader.gummiboot.enable = true;
packages.nix
@@ -11,9 +11,13 @@
 		systemPackages = with pkgs; [
 				wget
 				git
+				haskellPackages.git-annex
 				vim
 				tmux
 				htop
+				tree
+				lsof
+				psmisc
 		];
 	};
 }
README.md
@@ -4,3 +4,13 @@ This is my default nixos configuration, commonly used on all my
 nixos-enabled computers.
 
 Thanks to @FaustXVI 👼
+
+## How to use
+
+When installing nixos:
+
+- clone this repository in `/etc/nixos`
+- run `nixos-generate-configuration` to have the
+  `hardware-configuration.nix` generated.
+- create a `local-configuration.nix` with completely local
+  configuration. I mainly use this for `networking.hostname` key.