From eed4c6d633aff8817379f0b074f6163456401fc2 Mon Sep 17 00:00:00 2001 From: uttarayan21 Date: Mon, 12 May 2025 13:40:38 +0530 Subject: [PATCH] feat: Added audacity and swtich openscad to nightly/unstable Signed-off-by: uttarayan21 --- home/apps/audacity.nix | 9 +++++++++ home/apps/default.nix | 19 ++++++++++--------- home/apps/openscad.nix | 2 +- .../apps/{bambu-studio.nix => orcaslicer.nix} | 0 home/linux/hyprland.nix | 2 +- nixos/ryu/configuration.nix | 2 +- 6 files changed, 22 insertions(+), 12 deletions(-) create mode 100644 home/apps/audacity.nix rename home/apps/{bambu-studio.nix => orcaslicer.nix} (100%) diff --git a/home/apps/audacity.nix b/home/apps/audacity.nix new file mode 100644 index 00000000..fa94d9af --- /dev/null +++ b/home/apps/audacity.nix @@ -0,0 +1,9 @@ +{ + pkgs, + lib, + ... +}: { + home.packages = lib.optionals pkgs.stdenv.isLinux (with pkgs; [ + audacity + ]); +} diff --git a/home/apps/default.nix b/home/apps/default.nix index 3d71a5ae..fd2de768 100644 --- a/home/apps/default.nix +++ b/home/apps/default.nix @@ -5,26 +5,27 @@ }: lib.optionalAttrs device.hasGui { imports = [ - ./bambu-studio.nix + ./audacity.nix + ./bottles.nix + ./chromium.nix ./cursor.nix ./firefox.nix ./ghostty.nix + ./gimp.nix ./guitarix.nix + ./hyprpicker.nix + ./kicad.nix ./kitty.nix ./mpv.nix + ./neovide.nix ./obs-studio.nix + ./openscad.nix + ./orcaslicer.nix + ./thunderbird.nix ./vlc.nix ./vscode.nix ./wezterm.nix ./zathura.nix ./zed.nix - ./gimp.nix - ./kicad.nix - ./chromium.nix - ./thunderbird.nix - ./neovide.nix - ./openscad.nix - ./bottles.nix - ./hyprpicker.nix ]; } diff --git a/home/apps/openscad.nix b/home/apps/openscad.nix index 4cc822bc..43e5d2ad 100644 --- a/home/apps/openscad.nix +++ b/home/apps/openscad.nix @@ -4,6 +4,6 @@ ... }: { home.packages = [ - pkgs.openscad + pkgs.openscad-unstable ]; } diff --git a/home/apps/bambu-studio.nix b/home/apps/orcaslicer.nix similarity index 100% rename from home/apps/bambu-studio.nix rename to home/apps/orcaslicer.nix diff --git a/home/linux/hyprland.nix b/home/linux/hyprland.nix index c85d2428..a9842bc5 100644 --- a/home/linux/hyprland.nix +++ b/home/linux/hyprland.nix @@ -45,7 +45,7 @@ }; wayland.windowManager.hyprland = { enable = device.hasGui && pkgs.stdenv.isLinux; - systemd.enable = false; + systemd.enable = true; settings = { source = "${pkgs.catppuccinThemes.hyprland}/themes/mocha.conf"; diff --git a/nixos/ryu/configuration.nix b/nixos/ryu/configuration.nix index 5e1b4b40..98d45e4c 100644 --- a/nixos/ryu/configuration.nix +++ b/nixos/ryu/configuration.nix @@ -31,7 +31,7 @@ alvr.openFirewall = true; hyprland = { enable = true; - withUWSM = true; + # withUWSM = true; xwayland.enable = true; }; yubikey-touch-detector.enable = true;