Commit bf165fd7123f
Changed files (4)
.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.