diff options
| author | seth <[email protected]> | 2023-12-13 22:06:24 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-12-14 03:34:54 -0500 |
| commit | 78a344c27ded577693734ed733a57cfd582700a3 (patch) | |
| tree | 2679c6b33073c70c6f33a66f5ef3955fefe64bff /users/seth | |
| parent | 974decdfa3449f47892532f9ac728275fb9fa2df (diff) | |
tree-wide: back to attic & gha again
Diffstat (limited to 'users/seth')
| -rw-r--r-- | users/seth/programs/default.nix | 39 |
1 files changed, 21 insertions, 18 deletions
diff --git a/users/seth/programs/default.nix b/users/seth/programs/default.nix index c61a4d1..0de43c0 100644 --- a/users/seth/programs/default.nix +++ b/users/seth/programs/default.nix @@ -13,24 +13,27 @@ ./vim.nix ]; - home.packages = with pkgs; [ - fd - nurl - rclone - restic - - (let - getchvim = inputs'.getchvim.packages.default; - in - # remove desktop file - symlinkJoin { - name = builtins.replaceStrings ["neovim"] ["neovim-nodesktop"] getchvim.name; - paths = [getchvim]; - postBuild = '' - rm -rf $out/share/{applications,icons} - ''; - }) - ]; + home.packages = with pkgs; + [ + fd + nix-output-monitor + nurl + rclone + restic + + (let + getchvim = inputs'.getchvim.packages.default; + in + # remove desktop file + symlinkJoin { + name = builtins.replaceStrings ["neovim"] ["neovim-nodesktop"] getchvim.name; + paths = [getchvim]; + postBuild = '' + rm -rf $out/share/{applications,icons} + ''; + }) + ] + ++ lib.optional stdenv.isLinux inputs'.attic.packages.default; catppuccin.flavour = "mocha"; |
