nixos-configuration/vinzenz-lpt.nix
Vinzenz Schroeter 1b7989336e convoluted solution looking for a problem
unified modules structure
2023-09-24 10:15:53 +02:00

20 lines
356 B
Nix

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