NixOS-Configs/hosts/templates/workstation.nix
2026-05-05 14:20:58 -05:00

17 lines
No EOL
352 B
Nix

{ inputs, outputs, lib, config, pkgs, ... }: {
imports = [
inputs.sops-nix.nixosModules.sops
../workstation
../common/boot.nix
../common/networking.nix
../common/tailscale.nix
../../home
../../home/gui
../wm/sway
];
config = {
# Common workstation setup
nix.settings.trusted-users = ["root" "don"];
};
}