From 58c8ac6371157b4961be4f57d13c6bbe6f2dfd18 Mon Sep 17 00:00:00 2001 From: bangae1 Date: Mon, 1 Dec 2025 20:57:17 +0900 Subject: [PATCH] update --- configuration.nix | 9 ++++++++- hm/fish/cachyos-config.fish | 1 + shell.nix | 1 + 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 5937ac2..7b5ea17 100644 --- a/configuration.nix +++ b/configuration.nix @@ -60,7 +60,7 @@ users.users.bangae1 = { isNormalUser = true; description = "bangae1"; - extraGroups = [ "networkmanager" "wheel" "input" "tor" ]; + extraGroups = [ "networkmanager" "wheel" "input" "tor" "video" ]; packages = with pkgs; []; shell = pkgs.fish; }; @@ -97,6 +97,8 @@ jetbrains.datagrip tor torsocks + grim + ydotool ]; environment.pathsToLink = [ @@ -175,6 +177,11 @@ ]; }; + programs.ydotool = { + enable = true; + group = "input"; + }; + fonts.packages = with pkgs; [ nerd-fonts.jetbrains-mono jetbrains-mono diff --git a/hm/fish/cachyos-config.fish b/hm/fish/cachyos-config.fish index 58b0885..0e29bf2 100644 --- a/hm/fish/cachyos-config.fish +++ b/hm/fish/cachyos-config.fish @@ -123,3 +123,4 @@ alias jctl="journalctl -p 3 -xb" alias rip="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -200 | nl" alias dev="nix-shell ~/niri/" +alias craw="/home/bangae1/IdeaProjects/moani/crawling/.venv/bin/python /home/bangae1/IdeaProjects/moani/crawling/toki/book_firefox.py" diff --git a/shell.nix b/shell.nix index 0f398fb..5885f09 100644 --- a/shell.nix +++ b/shell.nix @@ -12,6 +12,7 @@ pkgs.mkShell { shellHook = '' echo "Welcome to the project development shell!" + alias craw="/home/bangae1/IdeaProjects/moani/crawling/.venv/bin/python /home/bangae1/IdeaProjects/moani/crawling/toki/book_firefox.py" export MY_PROJECT_VAR="hello" ''; }