From 04f0212de19ed1206eccc42c19e2b1464b446b5d Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Sat, 28 Dec 2024 13:27:15 -0800 Subject: simplify a bit home-manager configuration --- nix/users/fcuny/home-manager.nix | 24 +++--------------------- 1 file changed, 3 insertions(+), 21 deletions(-) (limited to 'nix/users/fcuny/home-manager.nix') 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 - ]); } -- cgit v1.2.3