This commit is contained in:
Daniel Flanagan 2023-11-21 18:27:53 -06:00
parent c12d5e74b3
commit 17973277ae
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4
5 changed files with 17 additions and 1 deletions

View file

@ -3,7 +3,7 @@
enable = true; enable = true;
enableFishIntegration = true; enableFishIntegration = true;
settings = { settings = {
modal = false; # vim mode? modal = true; # vim mode?
verbs = [ verbs = [
{ {

View file

@ -18,6 +18,7 @@
iex iex
zellij zellij
broot broot
nnn
cargo cargo
senpai senpai
tmux tmux

View file

@ -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;

View file

@ -0,0 +1,5 @@
{...}: {
programs.nnn = {
enable = true;
};
}

View file

@ -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;
}; };