summaryrefslogtreecommitdiff
path: root/home.nix
diff options
context:
space:
mode:
authorvin <vin@vineetk.net>2025-02-17 01:34:26 -0500
committervin <vin@vineetk.net>2025-02-17 01:34:26 -0500
commit7d513af561ee0a0b64a76ad917c703f0cdba19be (patch)
treecc6c8b27f5d46a8d5448a70d6ad50831ad7b1614 /home.nix
parent75385892779ec5e01ecad8ddb27c00bdaf07623c (diff)
update nixos inputs and add unzip, uvtools, prusa-slicer
Diffstat (limited to 'home.nix')
-rw-r--r--home.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/home.nix b/home.nix
index 3e8263b..ac1821e 100644
--- a/home.nix
+++ b/home.nix
@@ -48,6 +48,7 @@ in {
48 mlocate 48 mlocate
49 ncdu 49 ncdu
50 tree 50 tree
51 unzip
51 52
52 # X and desktop-related 53 # X and desktop-related
53 scrot 54 scrot
@@ -56,6 +57,23 @@ in {
56 xdotool 57 xdotool
57 xsel 58 xsel
58 xwallpaper 59 xwallpaper
60
61 # 3d printing
62 prusa-slicer
63 (let
64 pname = "UVtools";
65 version = "5.0.6";
66
67 src = fetchurl {
68 url =
69 "https://github.com/sn4k3/${pname}/releases/download/v${version}/${pname}_linux-x64_v${version}.AppImage";
70 hash = "sha256-T1E2+7YocWbspRrpWoexfLmm7LZSb4Nkw8WSBD6zTHs";
71 };
72
73 in appimageTools.wrapType2 {
74 inherit pname version src;
75 extraPkgs = pkgs: [ pkgs.icu ];
76 })
59 ]; 77 ];
60 78
61 preferXdgDirectories = true; 79 preferXdgDirectories = true;