all repos — nixfiles @ c918534796c695c42824d7f34f8f442b8e0e17cc

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

Move dotfile-related packages to home-manager
Alan Pearce alan@alanpearce.eu
Fri, 04 Oct 2019 21:40:13 +0200
commit

c918534796c695c42824d7f34f8f442b8e0e17cc

parent

8a52c1acb46ba99584ee4cc7c83161d972718a59

M system/marvin.nixsystem/marvin.nix
@@ -20,7 +20,6 @@ ./modules/hardware/trackball.nix     ./modules/hardware/trezor.nix
     ./modules/machines/x250.nix
     ./modules/programs/accounting.nix
-    ./modules/programs/dotfiles.nix
     ./modules/programs/i3.nix
     ./modules/programs/infrastructure.nix
     ./modules/programs/passwords.nix
D system/modules/programs/dotfiles.nix
@@ -1,13 +0,0 @@-{ config, pkgs, ... }:
-
-{ environment.systemPackages = with pkgs; [
-    fzf
-    ghq
-  ] ++ (
-    if stdenv.isDarwin
-    then [
-    ] else [
-      git
-    ]
-  );
-}
M system/prefect.nixsystem/prefect.nix
@@ -20,7 +20,6 @@ ./modules/hardware/trezor.nix     ./modules/services/zeroconf.nix
     ./modules/user-interface.nix
     ./modules/programs/accounting.nix
-    ./modules/programs/dotfiles.nix
     ./modules/programs/gnupg.nix
     ./modules/programs/keybase.nix
     ./modules/programs/i3.nix
M system/satoshipad.nixsystem/satoshipad.nix
@@ -19,7 +19,6 @@ ./modules/hardware/qwerty.nix     ./modules/hardware/trackball.nix
     ./modules/hardware/trezor.nix
     ./modules/machines/t470s.nix
-    ./modules/programs/dotfiles.nix
     ./modules/programs/gnupg.nix
     ./modules/programs/keybase.nix
     ./modules/programs/tor.nix
M system/trillian.nixsystem/trillian.nix
@@ -6,7 +6,6 @@ ./private/default.nix 
     ./modules/development/base.nix
     ./modules/programs/accounting.nix
-    ./modules/programs/dotfiles.nix
     ./modules/programs/shell.nix
   ];
 
M user/modules/zsh.nixuser/modules/zsh.nix
@@ -5,6 +5,14 @@ home.file = {     ".rm_recycle_home".text = ""; # use trash automatically in home directory
     ".zshenv".text = builtins.readFile ../zsh/.zshenv;
   };
+  home.packages = with pkgs; [
+    fzf
+    ghq
+  ] ++ (if stdenv.isDarwin
+  then []
+  else [
+    pkgs.git
+  ]);
   xdg.configFile.zsh = {
     recursive = true;
     source = ../zsh/.config/zsh;