diff options
| author | Franck Cuny <franck@fcuny.net> | 2025-04-29 17:50:07 -0700 |
|---|---|---|
| committer | Franck Cuny <franck@fcuny.net> | 2025-04-29 17:50:07 -0700 |
| commit | 4b198035730727721298dcec11321ee62a138df5 (patch) | |
| tree | 0fc5c03d891a73b0bb269cb6c6efb756596c126a | |
| parent | flake supports multiple architecture (diff) | |
| download | infra-4b198035730727721298dcec11321ee62a138df5.tar.gz | |
install element-desktop via nix
| -rw-r--r-- | nix/machines/darwin-shared.nix | 1 | ||||
| -rw-r--r-- | nix/users/fcuny/desktop.nix | 6 | ||||
| -rw-r--r-- | nix/users/fcuny/home-manager.nix | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/nix/machines/darwin-shared.nix b/nix/machines/darwin-shared.nix index 53be4e7..03239b2 100644 --- a/nix/machines/darwin-shared.nix +++ b/nix/machines/darwin-shared.nix @@ -126,7 +126,6 @@ casks = [ "docker" - "element" "iterm2" "vlc" ]; diff --git a/nix/users/fcuny/desktop.nix b/nix/users/fcuny/desktop.nix new file mode 100644 index 0000000..0bf6881 --- /dev/null +++ b/nix/users/fcuny/desktop.nix @@ -0,0 +1,6 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + element-desktop + ]; +} diff --git a/nix/users/fcuny/home-manager.nix b/nix/users/fcuny/home-manager.nix index 7750642..1298eb8 100644 --- a/nix/users/fcuny/home-manager.nix +++ b/nix/users/fcuny/home-manager.nix @@ -16,6 +16,7 @@ ] ++ lib.optionals darwin [ ./1password.nix + ./desktop.nix ./dev.nix ./media.nix ] |
