aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/common.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/fcuny/common.nix')
-rw-r--r--users/fcuny/common.nix25
1 files changed, 0 insertions, 25 deletions
diff --git a/users/fcuny/common.nix b/users/fcuny/common.nix
deleted file mode 100644
index 21413e0..0000000
--- a/users/fcuny/common.nix
+++ /dev/null
@@ -1,25 +0,0 @@
-{ config, lib, pkgs, ... }:
-
-{
-
- programs.home-manager.enable = true;
-
- home.packages = [
- pkgs.jq
- pkgs.ripgrep
- ];
-
- home.sessionVariables = {
- LANG = "en_US.UTF-8";
- LC_CTYPE = "en_US.UTF-8";
- LC_ALL = "en_US.UTF-8";
- EDITOR = "vim";
- };
-
- imports = [
- ./git.nix
- ./go.nix
- ./tmux.nix
- ./zsh.nix
- ];
-}