mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +00:00
ref(nix): ✨ mkOptions ✨
This commit is contained in:
parent
d98d30916b
commit
989d025f56
42 changed files with 80 additions and 78 deletions
11
nix/home/_/tmux/default.nix
Normal file
11
nix/home/_/tmux/default.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{pkgs, ...}: {
|
||||
programs.tmux = {
|
||||
enable = true;
|
||||
extraConfig =
|
||||
''
|
||||
set -g default-command "${pkgs.fish}/bin/fish" # Use fish
|
||||
set -g default-shell "${pkgs.fish}/bin/fish"
|
||||
''
|
||||
+ builtins.readFile ./tmux.conf;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue