31 lines
547 B
Nix
31 lines
547 B
Nix
{ ... }:
|
|
{
|
|
imports = [
|
|
./auto-cpufreq.nix
|
|
./backlight.nix
|
|
./hardware-configuration.nix
|
|
#./disko.nix
|
|
|
|
../../modules/default
|
|
|
|
];
|
|
|
|
desktop = {
|
|
enable = true;
|
|
dev.enable = true;
|
|
laser.enable = true;
|
|
windowManager = "niri-session";
|
|
hyprland.enable = false;
|
|
};
|
|
|
|
common.syncthing = {
|
|
enable = true;
|
|
devices = {
|
|
Anton = { id = "SIMFE5V-UHVQLHM-3ES7TAM-XIGP6TL-WCC37VY-B5ET6LJ-LPC2QIL-MYG4OQR"; };
|
|
};
|
|
};
|
|
|
|
hardware.bluetooth.enable = true;
|
|
services.hardware.bolt.enable = true;
|
|
|
|
}
|