polkit stuff
This commit is contained in:
parent
9e851bec59
commit
6f3d902c67
4 changed files with 34 additions and 8 deletions
|
@ -63,7 +63,7 @@
|
|||
xkbVariant = "";
|
||||
};
|
||||
|
||||
services.printing.enable = true;
|
||||
services.printing.enable = true;
|
||||
|
||||
sound.enable = true;
|
||||
hardware.pulseaudio.enable = false;
|
||||
|
@ -75,16 +75,20 @@
|
|||
pulse.enable = true;
|
||||
};
|
||||
|
||||
# enable fish
|
||||
programs.fish.enable = true;
|
||||
users.defaultUserShell = pkgs.fish;
|
||||
|
||||
#polkit
|
||||
security.polkit.enable = true;
|
||||
|
||||
#users
|
||||
users.users.notoh = {
|
||||
isNormalUser = true;
|
||||
description = "notoh";
|
||||
extraGroups = [ "networkmanager" "wheel" ];
|
||||
extraGroups = [ "networkmanager" "wheel" "disk" "video" ];
|
||||
packages = with pkgs; [
|
||||
# essential
|
||||
firefox
|
||||
neovim
|
||||
neofetch
|
||||
|
@ -92,8 +96,28 @@
|
|||
spotify
|
||||
discord
|
||||
waybar
|
||||
obsidian
|
||||
|
||||
# utility
|
||||
|
||||
hyprpaper
|
||||
streamlink
|
||||
ranger
|
||||
btop
|
||||
obsidian
|
||||
lazygit
|
||||
|
||||
# gaming
|
||||
steam
|
||||
wine
|
||||
lutris
|
||||
bottles
|
||||
|
||||
# fun stuff
|
||||
|
||||
cbonsai
|
||||
pipes-rs
|
||||
cmatrix
|
||||
|
||||
];
|
||||
};
|
||||
|
||||
|
@ -104,7 +128,6 @@
|
|||
git
|
||||
alacritty
|
||||
gcc
|
||||
kitty
|
||||
stow
|
||||
starship
|
||||
rustup
|
||||
|
@ -114,6 +137,8 @@
|
|||
nodejs
|
||||
polkit_gnome
|
||||
appimage-run
|
||||
wlogout
|
||||
dunst
|
||||
];
|
||||
|
||||
system.stateVersion = "23.05"; # Did you read the comment?
|
||||
|
|
|
@ -35,11 +35,11 @@
|
|||
|
||||
hyprland.nixosModules.default
|
||||
{ programs.hyprland.enable = true; }
|
||||
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
# Standalone home-manager configuration entrypoint
|
||||
# Available through 'home-manager --flake .#your-username@your-hostname'
|
||||
homeConfigurations = {
|
||||
|
@ -51,4 +51,5 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
|
@ -41,8 +41,8 @@ in
|
|||
glib
|
||||
gnome3.adwaita-icon-theme
|
||||
grim
|
||||
slurp
|
||||
wl-clipboard
|
||||
bemenu
|
||||
wlr-randr
|
||||
wofi
|
||||
];
|
||||
|
|
0
modules/systemd/default.nix
Normal file
0
modules/systemd/default.nix
Normal file
Loading…
Reference in a new issue