summary refs log tree commit diff stats
path: root/system/modules
diff options
context:
space:
mode:
authorAlan Pearce2019-10-04 21:40:13 +0200
committerAlan Pearce2019-10-04 21:40:13 +0200
commitc918534796c695c42824d7f34f8f442b8e0e17cc (patch)
treeb97bb30d7070b6629092ffb3709bbc9e94e15a51 /system/modules
parent8a52c1acb46ba99584ee4cc7c83161d972718a59 (diff)
downloadnixfiles-c918534796c695c42824d7f34f8f442b8e0e17cc.tar.lz
nixfiles-c918534796c695c42824d7f34f8f442b8e0e17cc.tar.zst
nixfiles-c918534796c695c42824d7f34f8f442b8e0e17cc.zip
Move dotfile-related packages to home-manager
Diffstat (limited to 'system/modules')
-rw-r--r--system/modules/programs/dotfiles.nix13
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
-    ]
-  );
-}