diff options
| author | Franck Cuny <franck@fcuny.net> | 2022-02-12 13:22:29 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2022-02-12 13:23:58 -0800 |
| commit | 60da6bc47620681b557ea2d105df87b22382efcd (patch) | |
| tree | 000a2c858a5bbcd9d0e9ed1c5bd57546420f65d0 /users/fcuny/default.nix | |
| parent | home-manager: last typo (diff) | |
| download | infra-60da6bc47620681b557ea2d105df87b22382efcd.tar.gz | |
home-manager: re-organize configuration for myself
Diffstat (limited to '')
| -rw-r--r-- | users/fcuny/default.nix | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/users/fcuny/default.nix b/users/fcuny/default.nix index 9d2f194..755f59e 100644 --- a/users/fcuny/default.nix +++ b/users/fcuny/default.nix @@ -1,12 +1,11 @@ -{ config, lib, pkgs, ... }: +{ config, lib, pkgs, desktop, ... }: { - programs.home-manager.enable = true; + imports = + [./cli ] + ++ (if desktop then [./desktop] else [ ]); - home.packages = [ - pkgs.jq - pkgs.ripgrep - ]; + programs.home-manager.enable = true; home.sessionVariables = { LANG = "en_US.UTF-8"; @@ -14,14 +13,4 @@ LC_ALL = "en_US.UTF-8"; EDITOR = "vim"; }; - - imports = [ - ../common/desktop - ./git.nix - ./go.nix - ./tmux.nix - ./zsh.nix - ./desktop.nix - ./pass.nix - ]; } |
