mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-16 15:32:46 +01:00
keyboard: make the model option optional
Also, actually use it in the call to setxkbmap.
This commit is contained in:
parent
824d31a21c
commit
d6b36f12ff
2 changed files with 3 additions and 2 deletions
|
|
@ -71,8 +71,8 @@ let
|
|||
};
|
||||
|
||||
model = mkOption {
|
||||
type = types.str;
|
||||
default = "pc104";
|
||||
type = with types; nullOr str;
|
||||
default = null;
|
||||
example = "presario";
|
||||
description = ''
|
||||
Keyboard model.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue