Compare commits
2 commits
3ee0f64c20
...
3633e3995c
| Author | SHA1 | Date | |
|---|---|---|---|
| 3633e3995c | |||
| b3edb33057 |
2 changed files with 5 additions and 3 deletions
|
|
@ -11,11 +11,14 @@ let
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
options.metacfg.cli-apps.tmux = {
|
options.metacfg.cli-apps.tmux = {
|
||||||
enable = mkEnableOption "Tmux";
|
enable = mkOption {
|
||||||
|
type = types.bool;
|
||||||
|
default = true;
|
||||||
|
description = "Enable Tmux";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
home.packages = with pkgs; [ tmux ];
|
|
||||||
home.file.".tmux.conf".text = ''
|
home.file.".tmux.conf".text = ''
|
||||||
set -g mouse on
|
set -g mouse on
|
||||||
'';
|
'';
|
||||||
|
|
|
||||||
|
|
@ -167,7 +167,6 @@ in
|
||||||
rustup
|
rustup
|
||||||
statix
|
statix
|
||||||
thunderbird
|
thunderbird
|
||||||
tmux
|
|
||||||
vim
|
vim
|
||||||
wezterm
|
wezterm
|
||||||
wl-clipboard
|
wl-clipboard
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue