summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2017-09-09 14:53:45 +0200
committerAlan Pearce2017-09-09 16:49:30 +0200
commit237e8d6f5d9f4ed9a98891d1486c3fa0a7d2fafe (patch)
tree7d3f3b1ee311903201d54dc0e8f6b4f70ee58f6e
parent679f00fb3203ec503c977da4e6dd9b9646212e7e (diff)
downloadnixos-configuration-237e8d6f5d9f4ed9a98891d1486c3fa0a7d2fafe.tar.lz
nixos-configuration-237e8d6f5d9f4ed9a98891d1486c3fa0a7d2fafe.tar.zst
nixos-configuration-237e8d6f5d9f4ed9a98891d1486c3fa0a7d2fafe.zip
Add dotfiles module
-rw-r--r--modules/dotfiles.nix13
-rw-r--r--satoshipad.nix1
2 files changed, 14 insertions, 0 deletions
diff --git a/modules/dotfiles.nix b/modules/dotfiles.nix
new file mode 100644
index 0000000..eed2223
--- /dev/null
+++ b/modules/dotfiles.nix
@@ -0,0 +1,13 @@
+{ config, pkgs, ... }:
+
+let
+  pkgsUnstable = import <nixos-unstable> {};
+  # pkgsUnstable = pkgs;
+in
+{ environment.systemPackages = with pkgs; [
+    git
+    stow
+    fzf
+    pkgsUnstable.ghq
+  ];
+}
diff --git a/satoshipad.nix b/satoshipad.nix
index 354403f..2e644c4 100644
--- a/satoshipad.nix
+++ b/satoshipad.nix
@@ -12,6 +12,7 @@
     ./modules/hidpi.nix
     ./modules/nitrokey.nix
     ./modules/shell.nix
+    ./modules/dotfiles.nix
   ];
 
   networking.hostName = "satoshipad";