aboutsummaryrefslogtreecommitdiff
path: root/nix/users/fcuny/home-manager.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-28 13:27:15 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-28 13:27:15 -0800
commit04f0212de19ed1206eccc42c19e2b1464b446b5d (patch)
treef7bb3c40a65a279ee7cd17ff75915c3475394602 /nix/users/fcuny/home-manager.nix
parentrename packages to pkgs (diff)
downloadinfra-04f0212de19ed1206eccc42c19e2b1464b446b5d.tar.gz
simplify a bit home-manager configuration
Diffstat (limited to '')
-rw-r--r--nix/users/fcuny/home-manager.nix24
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
- ]);
}