mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
13 lines
274 B
Nix
13 lines
274 B
Nix
{
|
|
config = {
|
|
programs.tmux = {
|
|
enable = true;
|
|
shell = "/usr/bin/myshell";
|
|
};
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/.config/tmux/tmux.conf
|
|
assertFileContent home-files/.config/tmux/tmux.conf ${./default-shell.conf}
|
|
'';
|
|
};
|
|
}
|