broot
This commit is contained in:
parent
c12d5e74b3
commit
17973277ae
5 changed files with 17 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
enable = true;
|
||||
enableFishIntegration = true;
|
||||
settings = {
|
||||
modal = false; # vim mode?
|
||||
modal = true; # vim mode?
|
||||
|
||||
verbs = [
|
||||
{
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
iex
|
||||
zellij
|
||||
broot
|
||||
nnn
|
||||
cargo
|
||||
senpai
|
||||
tmux
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
zellij = import ./zellij.nix;
|
||||
firefox = import ./firefox.nix;
|
||||
broot = import ./broot.nix;
|
||||
nnn = import ./nnn.nix;
|
||||
waybar = import ./waybar.nix;
|
||||
swaylock = import ./swaylock.nix;
|
||||
desktop = import ./desktop.nix;
|
||||
|
|
5
modules/home-manager/nnn.nix
Normal file
5
modules/home-manager/nnn.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
{...}: {
|
||||
programs.nnn = {
|
||||
enable = true;
|
||||
};
|
||||
}
|
|
@ -359,6 +359,12 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
|
|||
};
|
||||
};
|
||||
|
||||
services.gitea-actions-runner.instances.main = {
|
||||
# TODO: simple git-based automation would be dope? maybe especially for
|
||||
# mirroring to github super easy?
|
||||
enable = false;
|
||||
};
|
||||
|
||||
services.gitea = {
|
||||
enable = true;
|
||||
appName = "git.lyte.dev";
|
||||
|
@ -370,6 +376,9 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
|
|||
HTTP_PORT = 3088;
|
||||
DOMAIN = "git.lyte.dev";
|
||||
};
|
||||
actions = {
|
||||
ENABLED = true;
|
||||
};
|
||||
service = {
|
||||
DISABLE_REGISTRATION = true;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue