setup viridian with some programs
This commit is contained in:
parent
e6acb97737
commit
531b178421
1 changed files with 21 additions and 1 deletions
|
@ -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
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue