nixos-configuration/vinzenz-lpt.nix
2023-09-24 10:46:15 +02:00

21 lines
359 B
Nix

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