broot
This commit is contained in:
parent
c12d5e74b3
commit
17973277ae
|
@ -3,7 +3,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
enableFishIntegration = true;
|
enableFishIntegration = true;
|
||||||
settings = {
|
settings = {
|
||||||
modal = false; # vim mode?
|
modal = true; # vim mode?
|
||||||
|
|
||||||
verbs = [
|
verbs = [
|
||||||
{
|
{
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
iex
|
iex
|
||||||
zellij
|
zellij
|
||||||
broot
|
broot
|
||||||
|
nnn
|
||||||
cargo
|
cargo
|
||||||
senpai
|
senpai
|
||||||
tmux
|
tmux
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
zellij = import ./zellij.nix;
|
zellij = import ./zellij.nix;
|
||||||
firefox = import ./firefox.nix;
|
firefox = import ./firefox.nix;
|
||||||
broot = import ./broot.nix;
|
broot = import ./broot.nix;
|
||||||
|
nnn = import ./nnn.nix;
|
||||||
waybar = import ./waybar.nix;
|
waybar = import ./waybar.nix;
|
||||||
swaylock = import ./swaylock.nix;
|
swaylock = import ./swaylock.nix;
|
||||||
desktop = import ./desktop.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 = {
|
services.gitea = {
|
||||||
enable = true;
|
enable = true;
|
||||||
appName = "git.lyte.dev";
|
appName = "git.lyte.dev";
|
||||||
|
@ -370,6 +376,9 @@ sudo nix run nixpkgs#ipmitool -- raw 0x30 0x30 0x02 0xff 0x00
|
||||||
HTTP_PORT = 3088;
|
HTTP_PORT = 3088;
|
||||||
DOMAIN = "git.lyte.dev";
|
DOMAIN = "git.lyte.dev";
|
||||||
};
|
};
|
||||||
|
actions = {
|
||||||
|
ENABLED = true;
|
||||||
|
};
|
||||||
service = {
|
service = {
|
||||||
DISABLE_REGISTRATION = true;
|
DISABLE_REGISTRATION = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue