diff --git a/hosts/smaug/colmena.nix b/hosts/smaug/colmena.nix index 0a74e1c..1424ff2 100644 --- a/hosts/smaug/colmena.nix +++ b/hosts/smaug/colmena.nix @@ -1,9 +1,16 @@ -{ inputs, outputs, lib, config, pkgs, ... }: { - imports = [ ./default.nix ]; +{ + inputs, + outputs, + lib, + config, + pkgs, + ... +}: { + imports = [./default.nix]; deployment = { - tags = [ "workstation" "intel" ]; + tags = ["workstation" "intel"]; allowLocalDeployment = true; targetUser = "don"; - privilegeEscalationCommand = [ "/run/wrappers/bin/doas" ]; + privilegeEscalationCommand = ["/run/wrappers/bin/doas"]; }; }