18 lines
No EOL
377 B
Nix
18 lines
No EOL
377 B
Nix
{ inputs, outputs, lib, config, pkgs, ... }: {
|
|
imports = [
|
|
inputs.sops-nix.nixosModules.sops
|
|
../roles/default.nix
|
|
../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"];
|
|
};
|
|
} |