polkit stuff

This commit is contained in:
notohh 2022-12-06 21:36:50 -05:00
parent 9e851bec59
commit 6f3d902c67
4 changed files with 34 additions and 8 deletions

View file

@ -75,16 +75,20 @@
pulse.enable = true; pulse.enable = true;
}; };
# enable fish
programs.fish.enable = true; programs.fish.enable = true;
users.defaultUserShell = pkgs.fish; users.defaultUserShell = pkgs.fish;
#polkit
security.polkit.enable = true; security.polkit.enable = true;
#users
users.users.notoh = { users.users.notoh = {
isNormalUser = true; isNormalUser = true;
description = "notoh"; description = "notoh";
extraGroups = [ "networkmanager" "wheel" ]; extraGroups = [ "networkmanager" "wheel" "disk" "video" ];
packages = with pkgs; [ packages = with pkgs; [
# essential
firefox firefox
neovim neovim
neofetch neofetch
@ -92,8 +96,28 @@
spotify spotify
discord discord
waybar waybar
obsidian
# utility
hyprpaper
streamlink
ranger
btop btop
obsidian
lazygit
# gaming
steam
wine
lutris
bottles
# fun stuff
cbonsai
pipes-rs
cmatrix
]; ];
}; };
@ -104,7 +128,6 @@
git git
alacritty alacritty
gcc gcc
kitty
stow stow
starship starship
rustup rustup
@ -114,6 +137,8 @@
nodejs nodejs
polkit_gnome polkit_gnome
appimage-run appimage-run
wlogout
dunst
]; ];
system.stateVersion = "23.05"; # Did you read the comment? system.stateVersion = "23.05"; # Did you read the comment?

View file

@ -35,11 +35,11 @@
hyprland.nixosModules.default hyprland.nixosModules.default
{ programs.hyprland.enable = true; } { programs.hyprland.enable = true; }
]; ];
}; };
}; };
# Standalone home-manager configuration entrypoint # Standalone home-manager configuration entrypoint
# Available through 'home-manager --flake .#your-username@your-hostname' # Available through 'home-manager --flake .#your-username@your-hostname'
homeConfigurations = { homeConfigurations = {
@ -51,4 +51,5 @@
}; };
}; };
}; };
} }

View file

@ -41,8 +41,8 @@ in
glib glib
gnome3.adwaita-icon-theme gnome3.adwaita-icon-theme
grim grim
slurp
wl-clipboard wl-clipboard
bemenu
wlr-randr wlr-randr
wofi wofi
]; ];

View file