Stabilize system module
This commit is contained in:
parent
6163188786
commit
36ae7b2141
3 changed files with 9 additions and 5 deletions
|
@ -12,8 +12,12 @@ in
|
|||
description = ''
|
||||
Set key layout (fr, us)
|
||||
'';
|
||||
type = types.string;
|
||||
type = types.str;
|
||||
};
|
||||
};
|
||||
config = (import ./${cfg.layout}.nix {});
|
||||
}
|
||||
config = mkMerge [
|
||||
(mkIf (cfg.layout == "fr") (import ./fr.nix {}))
|
||||
(mkIf (cfg.layout == "us") (import ./us.nix {}))
|
||||
];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue