2024-08-25 19:58:12 +00:00
|
|
|
{ ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
../../modules/sops.nix
|
|
|
|
../../modules/system.nix
|
|
|
|
../../modules/gnome.nix
|
|
|
|
../../modules/syncthing
|
2024-08-26 00:53:19 +00:00
|
|
|
../../modules/stylix.nix
|
2024-08-25 19:58:12 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
services.fprintd.enable = true;
|
|
|
|
services.power-profiles-daemon.enable = true;
|
|
|
|
|
|
|
|
services.keyd = {
|
|
|
|
enable = true;
|
|
|
|
keyboards = {
|
|
|
|
default = {
|
|
|
|
ids = [ "*" ];
|
|
|
|
settings = {
|
|
|
|
main = {
|
|
|
|
capslock = "overload(control, esc)";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|