diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-09-08 16:39:30 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-09-08 16:41:11 +0530 |
commit | 19da93f1cca9dc56ed240ec063c59a572b79e51c (patch) | |
tree | 10565c3a330d2f9c7449509aa370641abc26aac9 /hosts | |
parent | 068ac0002e87a6760e44574c333bff4eeb895f59 (diff) |
hosts/kay: init
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/kay/configuration.nix | 6 | ||||
-rw-r--r-- | hosts/kay/hardware-configuration.nix | 1 |
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" |