hosts/prophet: enable SSS

This commit is contained in:
Max Headroom 2022-08-04 00:39:55 +02:00
parent 70ee7d9ccf
commit 0ee7b151b3

View file

@ -1,4 +1,4 @@
{ aspect, inputs, config, pkgs, ... }:
{ aspect, inputs, config, hosts, pkgs, ... }:
{
imports =
@ -16,6 +16,7 @@
aspect.modules.hyprspace
aspect.modules.ipfs
aspect.modules.nix-builder
aspect.modules.sss
]
@ -26,6 +27,7 @@
boot.loader.efi.canTouchEfiVariables = true;
networking.hostName = "prophet";
networking.nameservers = [ hosts.VEGAS.interfaces.vstub.addr ];
time.timeZone = "Europe/Zurich";
@ -34,13 +36,6 @@
i18n.defaultLocale = "en_US.UTF-8";
users.users.opc = {
isNormalUser = true;
extraGroups = [ "wheel" ];
};
security.sudo.wheelNeedsPassword = false;
services.openssh.enable = true;
system.stateVersion = "21.11";