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 = "";
|
xkbVariant = "";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.printing.enable = true;
|
services.printing.enable = true;
|
||||||
|
|
||||||
sound.enable = true;
|
sound.enable = true;
|
||||||
hardware.pulseaudio.enable = false;
|
hardware.pulseaudio.enable = false;
|
||||||
|
@ -74,17 +74,21 @@
|
||||||
alsa.support32Bit = true;
|
alsa.support32Bit = true;
|
||||||
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?
|
||||||
|
|
|
@ -35,10 +35,10 @@
|
||||||
|
|
||||||
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'
|
||||||
|
@ -51,4 +51,5 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
0
modules/systemd/default.nix
Normal file
0
modules/systemd/default.nix
Normal file
Loading…
Reference in a new issue