This commit is contained in:
2025-12-01 20:57:17 +09:00
parent b0a2d15bfb
commit 58c8ac6371
3 changed files with 10 additions and 1 deletions

View File

@@ -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

View File

@@ -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"

View File

@@ -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"
'';
}