flocon/hosts/vamos/default.nix

28 lines
539 B
Nix
Raw Normal View History

2024-09-24 21:47:40 +00:00
{inputs, ...}: {
2024-09-24 13:09:36 +00:00
imports = [
./hardware-configuration.nix
inputs.nixos-hardware.nixosModules.framework-13-7040-amd
];
2024-09-25 07:02:43 +00:00
services = {
fprintd.enable = true;
power-profiles-daemon.enable = true;
keyd = {
enable = true;
keyboards = {
default = {
ids = ["*"];
settings = {
main = {
capslock = "overload(control, esc)";
};
2024-09-24 13:09:36 +00:00
};
};
};
};
};
2024-09-24 21:47:40 +00:00
modules = {
neovim.enable = true;
wezterm.enable = true;
};
2024-08-25 19:58:12 +00:00
}