13 current 2025-06-17 12:28:17 25.05.20250615.6c64dab 6.15.2 *

This commit is contained in:
2025-06-17 12:28:19 +02:00
parent e01f3c7cdc
commit 0a9e4d7ce8
2 changed files with 9 additions and 8 deletions

View File

@ -122,12 +122,12 @@
firefox = { firefox = {
executable = "${pkgs.lib.getBin pkgs.firefox}/bin/firefox"; executable = "${pkgs.lib.getBin pkgs.firefox}/bin/firefox";
profile = "${pkgs.firejail}/etc/firejail/firefox.profile"; profile = "${pkgs.firejail}/etc/firejail/firefox.profile";
extraArgs = [ extraArgs = [
# Required for U2F USB stick # Required for U2F USB stick
"--ignore=private-dev" "--ignore=private-dev"
# Enable system notifications # Enable system notifications
"--dbus-user.talk=org.freedesktop.Notifications" "--dbus-user.talk=org.freedesktop.Notifications"
]; ];
}; };
chromium = { chromium = {
executable = "${pkgs.lib.getBin pkgs.ungoogled-chromium}/bin/chromium"; executable = "${pkgs.lib.getBin pkgs.ungoogled-chromium}/bin/chromium";
@ -135,7 +135,7 @@
}; };
}; };
}; };
# Yubikey Settings # Yubikey Settings
services.yubikey-agent.enable = true; services.yubikey-agent.enable = true;
security.pam.u2f.enable =true ; security.pam.u2f.enable = true;
} }

View File

@ -52,6 +52,7 @@ echo "NixOS Rebuilding configuration for host: $NIXOS_HOST..."
nix flake check 2>&1 | grep -i --color error && exit 1 nix flake check 2>&1 | grep -i --color error && exit 1
# Rebuild the system # Rebuild the system
mkdir -p logs
sudo nixos-rebuild switch --flake ./#$NIXOS_HOST &>logs/nixos-switch.log || (cat logs/nixos-switch.log | grep --color error && exit 1) sudo nixos-rebuild switch --flake ./#$NIXOS_HOST &>logs/nixos-switch.log || (cat logs/nixos-switch.log | grep --color error && exit 1)
# Get current generation metadata # Get current generation metadata