cleanup
This commit is contained in:
parent
1487c708c1
commit
d61e17b73a
7 changed files with 29 additions and 23 deletions
5
common/gitui.nix
Normal file
5
common/gitui.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = [
|
||||
pkgs.gitui
|
||||
];
|
||||
}
|
17
common/helix.nix
Normal file
17
common/helix.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
inputs,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: let
|
||||
package = inputs.hxwrap.packages.${pkgs.system}.default;
|
||||
in {
|
||||
environment.systemPackages = [package];
|
||||
|
||||
environment.sessionVariables = let
|
||||
exe = builtins.baseNameOf (lib.getExe package);
|
||||
in {
|
||||
EDITOR = exe;
|
||||
VISUAL = exe;
|
||||
};
|
||||
}
|
3
common/yazi.nix
Normal file
3
common/yazi.nix
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
programs.yazi.enable = true;
|
||||
}
|
5
common/zellij.nix
Normal file
5
common/zellij.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = [
|
||||
pkgs.zellij
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue