diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-06-30 10:10:31 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-06-30 10:10:31 -0700 |
| commit | c080ab1ab02e2c184751fc0856d29e488d5a7ebf (patch) | |
| tree | 5a8eb3a85bc3bc47b40ea2b63795a269db17a3ed /nix/users | |
| parent | minor tweaks (diff) | |
| download | infra-c080ab1ab02e2c184751fc0856d29e488d5a7ebf.tar.gz | |
only include some home-manager configurations on Darwin
Diffstat (limited to 'nix/users')
| -rw-r--r-- | nix/users/fcuny/home-manager.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/users/fcuny/home-manager.nix b/nix/users/fcuny/home-manager.nix index 54b5ad7..987a6a2 100644 --- a/nix/users/fcuny/home-manager.nix +++ b/nix/users/fcuny/home-manager.nix @@ -11,17 +11,17 @@ in imports = [ - ./emacs.nix ./shell.nix ./ssh.nix ./git.nix - ./llm.nix ] ++ lib.optionals darwin [ + ./emacs.nix ./1password.nix ./dev.nix ./media.nix ./secrets.nix + ./llm.nix ] ++ lib.optionals (machineUtils.isMachineType "work" systemName) [ ./work.nix ] ++ lib.optionals (machineUtils.isMachineType "personal" systemName) [ ./personal.nix ]; |
