setup viridian with some programs

This commit is contained in:
♥ Minnie ♥ 2025-06-06 18:34:15 +08:00
parent e6acb97737
commit 531b178421
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -1,5 +1,25 @@
{...}: {
{
inputs,
pkgs,
...
}: {
imports = [
./global
];
home.packages = with pkgs;
[
weechat
]
++ [
inputs.nixvim.packages.${pkgs.system}.default
];
programs.tmux = {
enable = true;
extraConfig = ''
set -g default-terminal "tmux-256color"
set -g status off
'';
};
}