diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-16 09:43:42 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2024-10-16 09:43:42 +0200 |
| commit | 955d12c9ef205692c6e030bf451a240b34ce0aec (patch) | |
| tree | 1b8d92467e98b4c51e3cb71d68db7c0b457a5be7 /common | |
| parent | 5970e81bfc6a6574f27d301bc10c606e7ca111f0 (diff) | |
add ydotool
Diffstat (limited to 'common')
| -rw-r--r-- | common/default.nix | 4 | ||||
| -rw-r--r-- | common/programs/default.nix | 1 | ||||
| -rw-r--r-- | common/users.nix | 1 |
3 files changed, 6 insertions, 0 deletions
diff --git a/common/default.nix b/common/default.nix index 4418fca..7bf5705 100644 --- a/common/default.nix +++ b/common/default.nix @@ -54,6 +54,10 @@ extraPortals = [ pkgs.xdg-desktop-portal-hyprland ]; }; + environment.sessionVariables = { + YDOTOOL_SOCKET = "/run/ydotoold/socket"; + }; + nix.settings.experimental-features = [ "nix-command" "flakes" diff --git a/common/programs/default.nix b/common/programs/default.nix index 9768774..ccca727 100644 --- a/common/programs/default.nix +++ b/common/programs/default.nix @@ -4,6 +4,7 @@ let "hyprland" "neovim" "zsh" + "ydotool" ]; in builtins.listToAttrs ( diff --git a/common/users.nix b/common/users.nix index 5046d0a..a0bafe5 100644 --- a/common/users.nix +++ b/common/users.nix @@ -5,6 +5,7 @@ extraGroups = [ "wheel" "networkmanager" + "ydotool" ]; shell = pkgs.zsh; }; |