diff options
Diffstat (limited to 'users/seth/programs')
| -rw-r--r-- | users/seth/programs/default.nix | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/users/seth/programs/default.nix b/users/seth/programs/default.nix index 93249d2..ab5f3c4 100644 --- a/users/seth/programs/default.nix +++ b/users/seth/programs/default.nix @@ -13,26 +13,26 @@ ./vim.nix ]; - home.packages = with pkgs; [ - fd - nurl - rclone - restic - - inputs'.attic.packages.attic - - (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 + 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.attic; catppuccin.flavour = "mocha"; |
