- Added system configuration for the HALO machine, including hardware, sound, and remapping settings. - Configured user-specific settings like session paths, favorite apps, and terminal customization. - Introduced zram swap, SSD TRIM, and PipeWire priority tuning for performance optimization.
21 lines
357 B
Nix
21 lines
357 B
Nix
{ ... }:
|
|
{
|
|
metacfg.services.xremap = {
|
|
enable = true;
|
|
deviceNames = [
|
|
"Hangsheng MonsGeek Keyboard"
|
|
"HS Galaxy100 Keyboard"
|
|
];
|
|
config = {
|
|
keymap = [
|
|
{
|
|
remap = {
|
|
LeftAlt-C = "COPY";
|
|
LeftAlt-V = "PASTE";
|
|
LeftAlt-X = "CUT";
|
|
};
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|