From 3c6a829a0628ecfff288d8c939a3e8d64fc51b61 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Thu, 10 Feb 2022 19:28:54 -0800 Subject: users: rename common.nix to default.nix We will use the variable 'destkop' to decide what to install after that. --- users/fcuny/common.nix | 25 ------------------------- users/fcuny/default.nix | 25 +++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 25 deletions(-) delete mode 100644 users/fcuny/common.nix create mode 100644 users/fcuny/default.nix (limited to 'users/fcuny') 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 - ]; -} diff --git a/users/fcuny/default.nix b/users/fcuny/default.nix new file mode 100644 index 0000000..21413e0 --- /dev/null +++ b/users/fcuny/default.nix @@ -0,0 +1,25 @@ +{ 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 + ]; +} -- cgit 1.4.1