add tailwind to framework

This commit is contained in:
2024-11-25 16:50:18 +01:00
parent f9bb7a157a
commit a8df9404f0
3 changed files with 51 additions and 1 deletions

View File

@ -6,6 +6,8 @@
...
}: {
imports = [./hardware-configuration.nix];
sops.defaultSopsFile = ./secrets.yaml;
sops.secrets."tailscale-auth-key" = {};
boot.bootspec.enable = true;
boot.loader.systemd-boot.enable = lib.mkForce false;
@ -99,6 +101,15 @@
lidSwitchExternalPower = "ignore";
extraConfig = "HoldoffTimeoutSec=300s";
};
tailscale = {
enable = true;
extraSetFlags = [
"--accept-routes=true"
"--accept-dns=false"
];
authKeyFile = config.sops.secrets."tailscale-auth-key".path;
};
};
services.pipewire = {