swayidle, osu stuff

This commit is contained in:
notohh 2022-12-17 18:19:53 -05:00
parent 419c924d6c
commit 098d5ae202
2 changed files with 15 additions and 1 deletions

View file

@ -24,6 +24,8 @@
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
networking.nameservers = [ "192.168.1.45" ]; networking.nameservers = [ "192.168.1.45" ];
hardware.opentabletdriver.enable = true;
# pihole # pihole
environment.etc = { environment.etc = {
"resolv.conf".text = "nameserver 192.168.1.45\n"; "resolv.conf".text = "nameserver 192.168.1.45\n";
@ -82,12 +84,17 @@
#polkit #polkit
security.polkit.enable = true; security.polkit.enable = true;
security.pam.services.swaylock = {
text = ''
auth include login
'';
};
#users #users
users.users.notoh = { users.users.notoh = {
isNormalUser = true; isNormalUser = true;
description = "notoh"; description = "notoh";
extraGroups = [ "networkmanager" "wheel" "disk" "video" "input" ]; extraGroups = [ "networkmanager" "wheel" "disk" "video" ];
packages = with pkgs; [ packages = with pkgs; [
# essential # essential
firefox firefox
@ -117,6 +124,8 @@
virt-manager virt-manager
playerctl playerctl
drawio drawio
imv
opentabletdriver
# entertainment # entertainment
ani-cli ani-cli
@ -127,6 +136,7 @@
wine wine
lutris lutris
bottles bottles
osu-lazer
# theming # theming
catppuccin-gtk catppuccin-gtk
@ -143,6 +153,7 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
wget wget
git git
gh
alacritty alacritty
stow stow
starship starship

View file

@ -46,6 +46,8 @@ in
wlogout wlogout
wlr-randr wlr-randr
rofi-wayland rofi-wayland
swayidle
swaylock-effects
]; ];
services.dbus.enable = true; services.dbus.enable = true;
@ -67,6 +69,7 @@ in
__GL_VRR_ALLOWED = "0"; __GL_VRR_ALLOWED = "0";
WLR_DRM_NO_ATOMIC = "1"; WLR_DRM_NO_ATOMIC = "1";
__GLX_VENDOR_LIBRARY_NAME = "nvidia"; __GLX_VENDOR_LIBRARY_NAME = "nvidia";
SDL_VIDEODRIVER= "wayland";
# Will break SDDM if running X11 # Will break SDDM if running X11
QT_QPA_PLATFORM = "wayland"; QT_QPA_PLATFORM = "wayland";