20 lines
373 B
Nix
20 lines
373 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
|
|
home-vpn
|
|
opentablet
|
|
|
|
#TODO: laptop specific aspects like powertop
|
|
];
|
|
};
|
|
}
|