flocon/hosts/vamos/default.nix

31 lines
527 B
Nix
Raw Normal View History

2024-08-25 19:58:12 +00:00
{ ... }:
{
imports = [
./hardware-configuration.nix
../../modules/sops.nix
../../modules/system.nix
../../modules/gnome.nix
../../modules/syncthing
../../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)";
};
};
};
};
};
}