Add kerberos, various config
This commit is contained in:
parent
ae7c518f43
commit
fd04e123fd
|
@ -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
15
sets/krb5.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue