28 lines
430 B
Nix
28 lines
430 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
./disko.nix
|
|
|
|
../../modules/default
|
|
|
|
];
|
|
|
|
desktop = {
|
|
enable = true;
|
|
hyprlock.enable = false;
|
|
hypridle.enable = false;
|
|
|
|
hyprland = {
|
|
hardware.Puenktchen = true;
|
|
};
|
|
};
|
|
|
|
common.syncthing = {
|
|
enable = true;
|
|
devices = {
|
|
Anton = { id = "WCDBADD-UPKCACI-X2YJOIO-5QC44PL-DBCR6TS-ADVQV33-HSMF32O-FOKMKAU"; };
|
|
};
|
|
};
|
|
|
|
}
|