Move dotfile-related packages to home-manager
Alan Pearce alan@alanpearce.eu
Fri, 04 Oct 2019 21:40:13 +0200
6 files changed, 8 insertions(+), 17 deletions(-)
M system/marvin.nix → system/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.nix → system/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.nix → system/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.nix → system/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.nix → user/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;