Files
nix-config/modules/hosts/tux/tux.nix

19 lines
355 B
Nix

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