wrapperPackages/software-dev: init

This commit is contained in:
Gabriel Arazas 2024-10-04 15:41:25 +08:00
parent ad2f15080f
commit 67118196f5
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
3 changed files with 23 additions and 0 deletions

View File

@ -12,6 +12,11 @@
systems = [ "x86_64-linux" ]; systems = [ "x86_64-linux" ];
nixpkgs.branch = "nixos-unstable"; nixpkgs.branch = "nixos-unstable";
}; };
software-dev = {
systems = [ "x86_64-linux" ];
nixpkgs.branch = "nixos-unstable";
};
}; };
}; };

View File

@ -0,0 +1,4 @@
simplified_ui true
on_force_close "quit"
default_mode "locked"
mouse_mode false

View File

@ -0,0 +1,14 @@
{ config, lib, pkgs, ... }:
{
wrappers.tmux-fds.wraparound = {
variant = "boxxy";
subwrapper.arg0 = lib.getExe' pkgs.tmux "tmux";
boxxy.rules."~/.config/tmux/tmux.conf".source = "~/.tmux.conf";
};
wrappers.zellij-fds = {
arg0 = lib.getExe' pkgs.zellij "zellij";
env.ZELLIJ_CONFIG_FILE.value = ./config/zellij/config.kdl;
};
}