9 lines
273 B
Nix
9 lines
273 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [ ./default.nix ];
|
|
deployment = {
|
|
tags = [ "workstation" "intel" "chromebook" ];
|
|
allowLocalDeployment = true;
|
|
targetUser = "don";
|
|
privilegeEscalationCommand = [ "/run/wrappers/bin/doas" ];
|
|
};
|
|
}
|