mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 00:39:45 +01:00
22 lines
337 B
Nix
22 lines
337 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
programs.bash = {
|
|
enable = true;
|
|
|
|
logoutExtra = ''
|
|
clear-console
|
|
'';
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.bash_logout
|
|
assertFileContent \
|
|
home-files/.bash_logout \
|
|
${./logout-expected.txt}
|
|
'';
|
|
};
|
|
}
|