diff options
author | Freya Murphy <freya@freyacat.org> | 2025-01-27 21:45:41 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-01-27 21:45:41 -0500 |
commit | 74aa6e0035be8552f3203879dff9abd0a8183033 (patch) | |
tree | 2c6db6a125c6d2cb19a1b980bec01e52871e0417 | |
parent | add killall (diff) | |
download | dotfiles-nix-74aa6e0035be8552f3203879dff9abd0a8183033.tar.gz dotfiles-nix-74aa6e0035be8552f3203879dff9abd0a8183033.tar.bz2 dotfiles-nix-74aa6e0035be8552f3203879dff9abd0a8183033.zip |
screenshot and office apps
-rw-r--r-- | nix/home/default.nix | 5 | ||||
-rw-r--r-- | nix/programs/default.nix | 1 | ||||
-rw-r--r-- | nix/programs/hypr/hyprland.nix | 1 | ||||
-rw-r--r-- | nix/programs/steam/default.nix | 5 |
4 files changed, 11 insertions, 1 deletions
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; +} |