mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
a lot of updates and misc fixes
This commit is contained in:
parent
e3a3ccfbfa
commit
28526d5db2
12 changed files with 133 additions and 87 deletions
|
@ -57,6 +57,10 @@
|
|||
'';
|
||||
authProtocols = [ "WPA-EAP" ];
|
||||
};
|
||||
agdsn_fritzbox = {
|
||||
psk = "@AGDSN_FRITZBOX_PSK@";
|
||||
authProtocols = [ "WPA-PSK" ];
|
||||
};
|
||||
FSR = {
|
||||
psk = "@FSR_PSK@";
|
||||
authProtocols = [ "WPA-PSK" ];
|
||||
|
@ -91,7 +95,7 @@
|
|||
systemd.services = {
|
||||
openfortivpn-agdsn = {
|
||||
description = "AG DSN Fortinet VPN";
|
||||
script = "${pkgs.openfortivpn}/bin/openfortivpn vpn.agdsn.de:443 --realm admin-vpn -u r5 -p $(cat $CREDENTIALS_DIRECTORY/password)";
|
||||
script = "${pkgs.openfortivpn}/bin/openfortivpn vpn.agdsn.de:443 --realm admin-vpn -u r5 -p $(cat $CREDENTIALS_DIRECTORY/password) --trusted-cert f49ac8a174c758737c3e27d93bc2f5de37e634e2f04029a85bdb629c0ebeed31";
|
||||
requires = [ "network-online.target" ];
|
||||
after = [ "network.target" "network-online.target" ];
|
||||
serviceConfig = {
|
||||
|
|
|
@ -14,10 +14,10 @@
|
|||
pam = {
|
||||
u2f = {
|
||||
enable = true;
|
||||
};
|
||||
services = {
|
||||
login.u2fAuth = true;
|
||||
sudo.u2fAuth = true;
|
||||
cue = true;
|
||||
# settings = {
|
||||
# cue = true;
|
||||
# };
|
||||
};
|
||||
};
|
||||
krb5 = {
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
sound.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
alsa.enable = true;
|
||||
|
@ -9,7 +8,7 @@
|
|||
};
|
||||
environment.systemPackages = with pkgs; [
|
||||
helvum
|
||||
easyeffects
|
||||
# easyeffects
|
||||
pavucontrol
|
||||
];
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue