From 74aa6e0035be8552f3203879dff9abd0a8183033 Mon Sep 17 00:00:00 2001 From: Freya Murphy <freya@freyacat.org> Date: Mon, 27 Jan 2025 21:45:41 -0500 Subject: [PATCH] screenshot and office apps --- nix/home/default.nix | 5 ++++- nix/programs/default.nix | 1 + nix/programs/hypr/hyprland.nix | 1 + nix/programs/steam/default.nix | 5 +++++ 4 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 nix/programs/steam/default.nix diff --git a/nix/home/default.nix b/nix/home/default.nix index 66510fc..39d1886 100644 --- a/nix/home/default.nix +++ b/nix/home/default.nix @@ -35,18 +35,19 @@ orchis-theme # wayland cage + grimblast wl-clipboard wl-clip-persist wl-mirror # gaming gamescope - steam wine # social discord element-desktop gajim # vrchat + blender unityhub vrc-get # programs @@ -56,7 +57,9 @@ gimp imagemagick imv + jq libnotify + libreoffice-fresh mpv pavucontrol pfetch-rs diff --git a/nix/programs/default.nix b/nix/programs/default.nix index a6c2996..be655c4 100644 --- a/nix/programs/default.nix +++ b/nix/programs/default.nix @@ -12,6 +12,7 @@ ./sops ./ssh ./starship + ./steam ./waybar ./wireguard ./wofi diff --git a/nix/programs/hypr/hyprland.nix b/nix/programs/hypr/hyprland.nix index 137fc45..093fd9a 100644 --- a/nix/programs/hypr/hyprland.nix +++ b/nix/programs/hypr/hyprland.nix @@ -159,6 +159,7 @@ in "$mod, D, exec, ${config.default.appLauncher}" "$mod, L, exec, ${config.default.lockScreen}" "$mod, Return, exec, ${config.default.terminal}" + ", Print, exec, grimblast copy area" # Misc diff --git a/nix/programs/steam/default.nix b/nix/programs/steam/default.nix new file mode 100644 index 0000000..2fbe3b1 --- /dev/null +++ b/nix/programs/steam/default.nix @@ -0,0 +1,5 @@ +{ ... }: + +{ + programs.steam.enable = true; +}