mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 10:30:14 +01:00
19 lines
282 B
Nix
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;
|
|
};
|
|
}
|