aboutsummaryrefslogtreecommitdiff
path: root/users/fcuny/common.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-10 19:28:54 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-10 19:28:54 -0800
commit3c6a829a0628ecfff288d8c939a3e8d64fc51b61 (patch)
tree23939a27cd1ad9caf24b9de5d4e9a72ba9f988a5 /users/fcuny/common.nix
parenthosts: set hostname from configuration (diff)
downloadinfra-3c6a829a0628ecfff288d8c939a3e8d64fc51b61.tar.gz
users: rename common.nix to default.nix
We will use the variable 'destkop' to decide what to install after that.
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
- ];
-}