mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
29 lines
534 B
Nix
29 lines
534 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
home.preferXdgDirectories = true;
|
||
|
|
||
|
programs.readline = {
|
||
|
enable = true;
|
||
|
variables.bell-style = "audible";
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
assertFileContent \
|
||
|
home-files/.config/inputrc \
|
||
|
${
|
||
|
builtins.toFile "readline-expected" ''
|
||
|
# Generated by Home Manager.
|
||
|
|
||
|
$include /etc/inputrc
|
||
|
set bell-style audible
|
||
|
|
||
|
''
|
||
|
}
|
||
|
|
||
|
assertFileContains \
|
||
|
home-path/etc/profile.d/hm-session-vars.sh \
|
||
|
'export INPUTRC="/home/hm-user/.config/inputrc"'
|
||
|
'';
|
||
|
}
|