Files
nix-config/modules/hosts/tux/tux.nix
2026-03-17 00:15:19 +01:00

18 lines
337 B
Nix

{ inputs, ... }: {
flake.modules.nixos.tux = {
imports = with inputs.self.modules.nixos;
with inputs.self.factory; [
system-desktop
systemd-boot
(autologin "weckyy702")
development-tools
i18n-de
tailscale
#TODO: laptop specific aspects like powertop
];
};
}