hosts/tux: Add preliminary configuration for tux

Welcome to the team <3
This commit is contained in:
2026-03-17 00:15:19 +01:00
parent 22a1b19301
commit 7410e0e0a2
12 changed files with 161 additions and 0 deletions

17
modules/hosts/tux/tux.nix Normal file
View File

@@ -0,0 +1,17 @@
{ 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
];
};
}