add zellij
This commit is contained in:
parent
82daaac80d
commit
e93707a52a
5 changed files with 22 additions and 3 deletions
|
@ -126,7 +126,7 @@
|
|||
inherit (nixpkgs) lib;
|
||||
|
||||
|
||||
meta = {nixpackages ? nixpkgs}: rec {
|
||||
meta = { nixpackages ? nixpkgs }: rec {
|
||||
system = "x86_64-linux";
|
||||
pkgs = import nixpackages {
|
||||
inherit system;
|
||||
|
|
|
@ -11,6 +11,7 @@
|
|||
./stylix.nix
|
||||
./vim.nix
|
||||
./yubikey.nix
|
||||
./zellij.nix
|
||||
];
|
||||
|
||||
home.stateVersion = "22.11";
|
||||
|
|
|
@ -15,7 +15,8 @@ with pkgs;
|
|||
init.defaultBranch = "main";
|
||||
pull.ff = "only";
|
||||
};
|
||||
diff-so-fancy.enable = true;
|
||||
#diff-so-fancy.enable = true;
|
||||
difftastic.enable = true;
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -35,12 +35,12 @@ in
|
|||
in
|
||||
[
|
||||
fixXhost
|
||||
pkgs.kitty
|
||||
pkgs.autorandr
|
||||
pkgs.polygon-art.polygon-art
|
||||
];
|
||||
|
||||
|
||||
|
||||
programs.i3status-rust = {
|
||||
enable = true;
|
||||
bars = {
|
||||
|
@ -115,6 +115,10 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
13
nixos/homes/palo/zellij.nix
Normal file
13
nixos/homes/palo/zellij.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }:
|
||||
with pkgs;
|
||||
{
|
||||
programs.zellij = {
|
||||
enable = true;
|
||||
# zsh will automatically start in zelllij
|
||||
#enableZshIntegration = true;
|
||||
settings = {
|
||||
on_force_close = "quit";
|
||||
};
|
||||
};
|
||||
|
||||
}
|
Loading…
Reference in a new issue