summaryrefslogtreecommitdiff
path: root/hosts/kay
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/kay')
-rw-r--r--hosts/kay/configuration.nix6
-rw-r--r--hosts/kay/hardware-configuration.nix1
2 files changed, 7 insertions, 0 deletions
diff --git a/hosts/kay/configuration.nix b/hosts/kay/configuration.nix
index da92a83..11b99d9 100644
--- a/hosts/kay/configuration.nix
+++ b/hosts/kay/configuration.nix
@@ -6,6 +6,12 @@
../../common.nix
];
+ services.openssh = {
+ enable = true;
+ settings = { PasswordAuthentication = false; };
+ };
+
+ boot.consoleLogLevel = 3;
networking.hostName = "kay";
environment.systemPackages = with pkgs; [ tmux ];
}
diff --git a/hosts/kay/hardware-configuration.nix b/hosts/kay/hardware-configuration.nix
index 1583736..3299f3f 100644
--- a/hosts/kay/hardware-configuration.nix
+++ b/hosts/kay/hardware-configuration.nix
@@ -5,6 +5,7 @@
boot = {
kernelModules = [ "kvm-intel" ];
+ blacklistedKernelModules = [ "nouveau" ];
initrd.availableKernelModules = [
"xhci_pci"
"ehci_pci"