mirror of
https://github.com/FabricSoul/nixos-configs.git
synced 2026-02-03 22:26:24 -05:00
feat: add kmonad
feat: add kmonad feat: add kmonad
This commit is contained in:
parent
81401cced7
commit
085b016786
4 changed files with 84 additions and 1 deletions
|
|
@ -52,7 +52,6 @@
|
|||
# This value determines the NixOS release version
|
||||
system.stateVersion = "25.05";
|
||||
|
||||
hardware.pulseaudio.enable = false; # Disable the actual pulseaudio
|
||||
security.rtkit.enable = true;
|
||||
services.pipewire = {
|
||||
enable = true;
|
||||
|
|
|
|||
11
hosts/common/optional/kmonad.nix
Normal file
11
hosts/common/optional/kmonad.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{...}: {
|
||||
services.kmonad = {
|
||||
enable = true;
|
||||
keyboards = {
|
||||
myKMonadOutput = {
|
||||
device = "/dev/input/event0";
|
||||
config = builtins.readFile ../../../files/keyboard.kbd;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -13,6 +13,8 @@
|
|||
../common/global
|
||||
../common/optional/fcitx5.nix
|
||||
../common/optional/bluetooth.nix
|
||||
|
||||
../common/optional/kmonad.nix
|
||||
];
|
||||
|
||||
# Bootloader
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue