diff options
author | Alan Pearce | 2019-10-04 21:40:13 +0200 |
---|---|---|
committer | Alan Pearce | 2019-10-04 21:40:13 +0200 |
commit | c918534796c695c42824d7f34f8f442b8e0e17cc (patch) | |
tree | b97bb30d7070b6629092ffb3709bbc9e94e15a51 /system/modules/programs | |
parent | 8a52c1acb46ba99584ee4cc7c83161d972718a59 (diff) | |
download | nixfiles-c918534796c695c42824d7f34f8f442b8e0e17cc.tar.lz nixfiles-c918534796c695c42824d7f34f8f442b8e0e17cc.tar.zst nixfiles-c918534796c695c42824d7f34f8f442b8e0e17cc.zip |
Move dotfile-related packages to home-manager
Diffstat (limited to 'system/modules/programs')
-rw-r--r-- | system/modules/programs/dotfiles.nix | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/system/modules/programs/dotfiles.nix b/system/modules/programs/dotfiles.nix deleted file mode 100644 index 2fb66306..00000000 --- a/system/modules/programs/dotfiles.nix +++ /dev/null @@ -1,13 +0,0 @@ -{ config, pkgs, ... }: - -{ environment.systemPackages = with pkgs; [ - fzf - ghq - ] ++ ( - if stdenv.isDarwin - then [ - ] else [ - git - ] - ); -} |