diff options
| author | Franck Cuny <franck@fcuny.net> | 2024-12-28 13:27:15 -0800 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2024-12-28 13:27:15 -0800 |
| commit | 04f0212de19ed1206eccc42c19e2b1464b446b5d (patch) | |
| tree | f7bb3c40a65a279ee7cd17ff75915c3475394602 /nix/users/fcuny/home-manager.nix | |
| parent | rename packages to pkgs (diff) | |
| download | infra-04f0212de19ed1206eccc42c19e2b1464b446b5d.tar.gz | |
simplify a bit home-manager configuration
Diffstat (limited to '')
| -rw-r--r-- | nix/users/fcuny/home-manager.nix | 24 |
1 files changed, 3 insertions, 21 deletions
diff --git a/nix/users/fcuny/home-manager.nix b/nix/users/fcuny/home-manager.nix index e450c24..e9a51a7 100644 --- a/nix/users/fcuny/home-manager.nix +++ b/nix/users/fcuny/home-manager.nix @@ -1,6 +1,6 @@ { darwin, systemName, ... }: -{ lib, pkgs, ... }: +{ lib, ... }: { home.stateVersion = "23.05"; @@ -14,26 +14,8 @@ ] ++ lib.optionals darwin [ ./1password.nix - ./go.nix + ./dev.nix + ./media.nix ] ++ lib.optionals (systemName == "hq-c02fk3q7md6t") [ ./work.nix ]; - - home.packages = - with pkgs; - [ - # encryption - age - - nil # nix lsp - nix-direnv # integration with direnv - nixfmt-rfc-style # new formatter - ] - ++ (lib.optionals (darwin) [ - # media - mpv - ffmpeg - - # rust - rustup - ]); } |
