Merge branch 'main' of ssh://localhost:16718/Koen/nix-config
This commit is contained in:
commit
f254c80baa
5 changed files with 17 additions and 5 deletions
|
|
@ -11,6 +11,7 @@ in {
|
|||
containers = {
|
||||
enable = true;
|
||||
backupDir = "/home/${username}/backups";
|
||||
interface = "enp2s0";
|
||||
|
||||
nginx.enable = true;
|
||||
vaultwarden.enable = true;
|
||||
|
|
|
|||
|
|
@ -38,6 +38,7 @@ in {
|
|||
sqlitebrowser
|
||||
typst
|
||||
xclip
|
||||
unityhub
|
||||
uv
|
||||
zed-editor
|
||||
|
||||
|
|
|
|||
|
|
@ -15,6 +15,9 @@ in {
|
|||
options = {
|
||||
horseman.containers = {
|
||||
enable = mkEnableOption "Containers";
|
||||
interface = mkOption {
|
||||
type = types.str;
|
||||
};
|
||||
backupDir = mkOption {
|
||||
type = types.str;
|
||||
};
|
||||
|
|
@ -26,7 +29,7 @@ in {
|
|||
enable = true;
|
||||
# Use "ve-*" when using nftables instead of iptables
|
||||
internalInterfaces = ["ve-+"];
|
||||
externalInterface = "enp2s0";
|
||||
externalInterface = cfg.interface;
|
||||
# Lazy IPv6 connectivity for the container
|
||||
enableIPv6 = true;
|
||||
};
|
||||
|
|
|
|||
|
|
@ -52,6 +52,13 @@ in {
|
|||
id = "documentFolder";
|
||||
path = "/home/${username}/Documents";
|
||||
devices = ["artemis" "terra" "solis"];
|
||||
ignorePatterns = [
|
||||
"node_modules"
|
||||
".venv"
|
||||
"venv"
|
||||
"dist-newstyle"
|
||||
"constipated-koala/storage"
|
||||
];
|
||||
};
|
||||
"Programming" = {
|
||||
id = "programmingFolder";
|
||||
|
|
|
|||
|
|
@ -88,12 +88,12 @@ in {
|
|||
};
|
||||
|
||||
"cpu" = {
|
||||
interval = 1;
|
||||
interval = 3;
|
||||
on-click = "kitty btop &";
|
||||
};
|
||||
|
||||
"memory" = {
|
||||
interval = 1;
|
||||
interval = 3;
|
||||
on-click = "kitty btop &";
|
||||
};
|
||||
|
||||
|
|
@ -102,7 +102,7 @@ in {
|
|||
};
|
||||
|
||||
"network" = {
|
||||
interval = 1;
|
||||
interval = 3;
|
||||
|
||||
tooltip-format = " {bandwidthDownBits} , {bandwidthDownBits} ";
|
||||
tooltip-format-wifi = "{essid}: {bandwidthDownBits} , {bandwidthDownBits} ";
|
||||
|
|
@ -110,7 +110,7 @@ in {
|
|||
};
|
||||
|
||||
"battery" = {
|
||||
interval = 1;
|
||||
interval = 3;
|
||||
format-icons = ["" "" "" "" ""];
|
||||
states = {
|
||||
critical = 15;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue