28 lines
477 B
Nix
28 lines
477 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./auto-cpufreq.nix
|
|
./backlight.nix
|
|
./hardware-configuration.nix
|
|
#./disko.nix
|
|
|
|
../../modules/default
|
|
|
|
];
|
|
|
|
desktop = {
|
|
enable = true;
|
|
hyprland.hardware.Lenni.enable = true;
|
|
};
|
|
|
|
common.syncthing = {
|
|
enable = true;
|
|
devices = {
|
|
Anton = { id = "WCDBADD-UPKCACI-X2YJOIO-5QC44PL-DBCR6TS-ADVQV33-HSMF32O-FOKMKAU"; };
|
|
};
|
|
};
|
|
|
|
hardware.bluetooth.enable = true;
|
|
services.hardware.bolt.enable = true;
|
|
|
|
}
|