Add kerberos, various config

This commit is contained in:
Artemis Tosini 2021-02-20 23:32:07 +00:00
parent ae7c518f43
commit fd04e123fd
Signed by: artemist
GPG key ID: ADFFE553DCBB831E
5 changed files with 25 additions and 1 deletions

View file

@ -2,3 +2,5 @@ WHEEL_UP ignore
WHEEL_DOWN ignore WHEEL_DOWN ignore
WHEEL_LEFT ignore WHEEL_LEFT ignore
WHEEL_RIGHT ignore WHEEL_RIGHT ignore
k add sub-scale -0.1
K add sub-scale +0.1

15
sets/krb5.nix Normal file
View file

@ -0,0 +1,15 @@
{ ... }:
{
krb5 = {
enable = true;
libdefaults.default_realm = "ARTEM.IST";
domain_realm = {
"artem.ist" = "ARTEM.IST";
".artem.ist" = "ARTEM.IST";
};
# Get everything else from DNS
realms."ARTEM.IST".admin_server = "manehattan.artem.ist";
};
}

View file

@ -12,7 +12,10 @@
}; };
hardware.pulseaudio.enable = lib.mkForce false; hardware.pulseaudio.enable = lib.mkForce false;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
qjackctl
pulseaudioLight pulseaudioLight
qjackctl
carla
lsp-plugins
]; ];
} }

View file

@ -16,6 +16,9 @@
}; };
}; };
# Breaks IPv4 on bridge
boot.kernel.sysctl."net.bridge.bridge-nf-call-iptables" = 0;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
virtmanager virtmanager
spice_gtk spice_gtk

View file

@ -11,6 +11,7 @@
../../sets/gpu/amd.nix ../../sets/gpu/amd.nix
../../sets/hacking.nix ../../sets/hacking.nix
../../sets/hardware.nix ../../sets/hardware.nix
../../sets/krb5.nix
../../sets/printing.nix ../../sets/printing.nix
../../sets/ssh.nix ../../sets/ssh.nix
../../sets/virtualization.nix ../../sets/virtualization.nix