nixos-configuration/vinzenz-lpt.nix
2023-10-02 20:44:44 +02:00

22 lines
386 B
Nix

{...}: {
imports = [
(import ./modules {
hostName = "vinzenz-lpt";
enableHomeManager = true;
})
];
config = {
my = {
enabledUsers = ["vinzenz"];
desktop = {
enableGnome = true;
enableGaming = true;
};
};
# flatpak xdg-portal-kde crashes, otherwise this would be global
services.flatpak.enable = true;
};
}