29 lines
442 B
Nix
29 lines
442 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disko.nix
|
|
./jovian.nix
|
|
|
|
../../modules/common
|
|
../../modules/nixos
|
|
../../modules/home-manager
|
|
../../modules/sops
|
|
../../modules/stylix
|
|
|
|
];
|
|
|
|
desktop = {
|
|
enable = true;
|
|
autologin.enable = false;
|
|
emulation.enable = true;
|
|
laser.enable = true;
|
|
wm.niri.enable = true;
|
|
|
|
hyprland = {
|
|
hardware.Lillie.enable = true;
|
|
};
|
|
};
|
|
|
|
|
|
}
|