This commit is contained in:
2025-12-01 20:20:30 +09:00
parent 8f7e566f5b
commit b0a2d15bfb
3 changed files with 15 additions and 2 deletions

View File

@@ -60,7 +60,7 @@
users.users.bangae1 = { users.users.bangae1 = {
isNormalUser = true; isNormalUser = true;
description = "bangae1"; description = "bangae1";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" "input" "tor" ];
packages = with pkgs; []; packages = with pkgs; [];
shell = pkgs.fish; shell = pkgs.fish;
}; };
@@ -86,6 +86,7 @@
fish fish
eza eza
fastfetch fastfetch
nfs-utils
wlr-randr wlr-randr
xwayland-satellite xwayland-satellite
xdg-desktop-portal-gnome xdg-desktop-portal-gnome
@@ -94,6 +95,8 @@
nautilus nautilus
adw-gtk3 adw-gtk3
jetbrains.datagrip jetbrains.datagrip
tor
torsocks
]; ];
environment.pathsToLink = [ environment.pathsToLink = [
@@ -186,6 +189,14 @@
}; };
}; };
fileSystems."/book" = {
device = "192.168.0.137:/mnt/user1/book";
fsType = "nfs";
options = [
"defaults"
];
};
#systemd.user.services.niri-flake-polkit.enable = false; #systemd.user.services.niri-flake-polkit.enable = false;
# List services that you want to enable: # List services that you want to enable:

View File

@@ -122,4 +122,4 @@ alias jctl="journalctl -p 3 -xb"
# Recent installed packages # Recent installed packages
alias rip="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -200 | nl" alias rip="expac --timefmt='%Y-%m-%d %T' '%l\t%n %v' | sort | tail -200 | nl"
alias dev="nixshell ~/niri/" alias dev="nix-shell ~/niri/"

View File

@@ -6,6 +6,8 @@ pkgs.mkShell {
yarn yarn
python313 python313
python313Packages.numpy python313Packages.numpy
python313Packages.pillow
python313Packages.opencv-python
]; ];
shellHook = '' shellHook = ''