Re-enabled nvtop, nopasswd for nvtop, properly enable kitty with remote control, streamdeck now uses alltop, alltop desktop entry, j4-dmenu-desktop as wrapper for bemenu so that desktop entries show, fixed desktop entry location

This commit is contained in:
2025-11-07 14:55:22 -08:00
parent 513cf526d8
commit 283f9ad213
12 changed files with 38 additions and 22 deletions

View File

@@ -40,7 +40,7 @@
networkmanager
networkmanagerapplet
nmap
# nvtopPackages.full # <- Build failure: https://github.com/nixos/nixpkgs/issues/456928
nvtopPackages.full
openrgb-with-all-plugins
pciutils
rofi-bluetooth

View File

@@ -25,6 +25,7 @@
environment.systemPackages = with pkgs; [
arandr
bemenu
dunst
grim
hyprpaper
@@ -39,7 +40,7 @@
swayimg
wl-clipboard
wlogout
bemenu
];
}

View File

@@ -4,6 +4,7 @@
enable = true;
extraRules = [
{
groups = [ "wheel" ];
commands = [
{
command = "${pkgs.systemd}/bin/reboot";
@@ -14,7 +15,16 @@
options = [ "NOPASSWD" ];
}
];
groups = [ "wheel" ];
}
{
users = [ "caperren" ];
commands = [
{
command = "${pkgs.nvtopPackages.full}/bin/nvtop";
options = [ "NOPASSWD" "SETENV" ];
}
];
}
];
};