23 lines
281 B
Nix
23 lines
281 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disko.nix
|
|
./jovian.nix
|
|
|
|
../../modules/default
|
|
|
|
];
|
|
|
|
desktop = {
|
|
enable = true;
|
|
autostart.enable = false;
|
|
emulation.enable = true;
|
|
|
|
hyprland = {
|
|
hardware.Lillie = true;
|
|
};
|
|
};
|
|
|
|
|
|
}
|