nixos-configuration/vinzenz-lpt.nix
2023-09-11 19:16:26 +02:00

19 lines
282 B
Nix

{...}: {
imports = [
./modules/desktop
(import ./modules/hardware "vinzenz-lpt")
];
config = {
my = {
desktop = {
enable = true;
gnome.enable = true;
vinzenz.enable = true;
};
};
services.flatpak.enable = true;
};
}