summary refs log tree commit diff stats
path: root/system/modules/programs/dotfiles.nix
diff options
context:
space:
mode:
Diffstat (limited to 'system/modules/programs/dotfiles.nix')
-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
-    ]
-  );
-}