mirror of
https://github.com/kaesaecracker/nixos-configuration.git
synced 2025-01-18 18:40:14 +01:00
23 lines
417 B
Nix
23 lines
417 B
Nix
{...}: {
|
|
imports = [
|
|
(import ./modules {
|
|
hostName = "vinzenz-lpt";
|
|
enableHomeManager = true;
|
|
})
|
|
];
|
|
|
|
config = {
|
|
my = {
|
|
enabledUsers = ["vinzenz"];
|
|
desktop = {
|
|
enableGnome = true;
|
|
enableGaming = true;
|
|
enablePrinting = true;
|
|
};
|
|
};
|
|
|
|
# flatpak xdg-portal-kde crashes, otherwise this would be global
|
|
services.flatpak.enable = true;
|
|
};
|
|
}
|