all repos — nixfiles @ 237e8d6f5d9f4ed9a98891d1486c3fa0a7d2fafe

System and user configuration, managed by nix and home-manager

Add dotfiles module

Alan Pearce
commit

237e8d6f5d9f4ed9a98891d1486c3fa0a7d2fafe

parent

679f00fb3203ec503c977da4e6dd9b9646212e7e

2 files changed, 14 insertions(+), 0 deletions(-)

jump to
A 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 + ]; +}
M satoshipad.nixsatoshipad.nix
@@ -12,6 +12,7 @@ ./modules/syncthing.nix
./modules/hidpi.nix ./modules/nitrokey.nix ./modules/shell.nix + ./modules/dotfiles.nix ]; networking.hostName = "satoshipad";