This commit is contained in:
vanten-s 2024-08-30 12:41:24 +02:00
parent 7a3cb17da5
commit e1c8f30eb3
Signed by: vanten-s
GPG key ID: DE3060396884D3F2
5 changed files with 29 additions and 0 deletions

View file

@ -155,11 +155,13 @@ in {
cifs-utils cifs-utils
ffmpeg ffmpeg
pulsemixer pulsemixer
xorg.xhost
swaybg swaybg
swww swww
python3 python3
python311Packages.pip python311Packages.pip
python311Packages.pygobject3 python311Packages.pygobject3
gparted
libsForQt5.kamoso libsForQt5.kamoso
zoom-us zoom-us
gcc gcc
@ -185,6 +187,8 @@ in {
(epsonscan2.override { withNonFreePlugins = true; }) (epsonscan2.override { withNonFreePlugins = true; })
]; ];
security.polkit.enable = true;
environment.variables = { environment.variables = {
LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [ LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [
fontconfig fontconfig
@ -219,6 +223,19 @@ in {
pulse.enable = true; pulse.enable = true;
}; };
security.sudo.extraRules = [
{ groups = [ "wheel" ]; commands = [
{
command = "/run/current-system/sw/bin/wg-quick";
options = [ "NOPASSWD" ];
}
{
command = "/run/current-system/sw/bin/wg";
options = [ "NOPASSWD" ];
}
]; }
];
environment.etc = { environment.etc = {
"wireplumber/bluetooth.lua.d/51-bluez-config.lua".text = '' "wireplumber/bluetooth.lua.d/51-bluez-config.lua".text = ''
bluez_monitor.properties = { bluez_monitor.properties = {

View file

@ -7,6 +7,7 @@ xwayland {
source=~/.config/local/display.conf source=~/.config/local/display.conf
exec-once = waybar & waypaper --restore exec-once = waybar & waypaper --restore
exec-once = mako exec-once = mako
exec-once = xhost +local:
input { input {
kb_layout = se kb_layout = se

5
home-modules/fll.nix Normal file
View file

@ -0,0 +1,5 @@
{ pkgs, ...}:
{
home.packages = with pkgs; [ leocad ];
}

View file

@ -0,0 +1,5 @@
{ pkgs, ... }:
{
}

View file

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
./home-modules/emacs.nix ./home-modules/emacs.nix
./home-modules/fll.nix
./home-modules/fetch.nix ./home-modules/fetch.nix
./home-modules/silicon.nix ./home-modules/silicon.nix
]; ];