Update files
This commit is contained in:
@@ -24,6 +24,7 @@
|
|||||||
".config/superProductivity"
|
".config/superProductivity"
|
||||||
".config/Antigravity"
|
".config/Antigravity"
|
||||||
".local/share/direnv"
|
".local/share/direnv"
|
||||||
|
".local/share/docker"
|
||||||
".local/share/nvim"
|
".local/share/nvim"
|
||||||
".local/share/krita"
|
".local/share/krita"
|
||||||
".local/share/voxtype"
|
".local/share/voxtype"
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{ pkgs, pkgs-unstable, try-cli, ... }:
|
{ pkgs, pkgs-unstable, try-cli, nix-direnv, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
enpass = pkgs.enpass.overrideAttrs (oldAttrs: rec {
|
enpass = pkgs.enpass.overrideAttrs (oldAttrs: rec {
|
||||||
@@ -25,7 +25,6 @@ in
|
|||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
antigravity # Gemini AI coding assistant
|
antigravity # Gemini AI coding assistant
|
||||||
bluetui # Bluetooth TUI
|
bluetui # Bluetooth TUI
|
||||||
direnv # Directory environment manager
|
|
||||||
enpass # Password manager
|
enpass # Password manager
|
||||||
enpass-cli # Enpass CLI tool
|
enpass-cli # Enpass CLI tool
|
||||||
expressvpn # VPN
|
expressvpn # VPN
|
||||||
|
|||||||
@@ -15,6 +15,10 @@
|
|||||||
Status = "locked";
|
Status = "locked";
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
direnv = {
|
||||||
|
enable = true;
|
||||||
|
nix-direnv.enable = true;
|
||||||
|
};
|
||||||
walker = {
|
walker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = {};
|
config = {};
|
||||||
|
|||||||
@@ -58,6 +58,9 @@ in
|
|||||||
];
|
];
|
||||||
bootspec.enable = true;
|
bootspec.enable = true;
|
||||||
resumeDevice = "/dev/disk/by-partlabel/disk-${hostname}-root";
|
resumeDevice = "/dev/disk/by-partlabel/disk-${hostname}-root";
|
||||||
|
kernel.sysctl = {
|
||||||
|
"net.ipv4.ip_unprivileged_port_start" = 0;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd = {
|
systemd = {
|
||||||
|
|||||||
@@ -17,5 +17,18 @@
|
|||||||
allowedTCPPorts = [ 53317 ];
|
allowedTCPPorts = [ 53317 ];
|
||||||
allowedUDPPorts = [ 53317 ];
|
allowedUDPPorts = [ 53317 ];
|
||||||
};
|
};
|
||||||
|
hosts = {
|
||||||
|
"127.0.0.1" = [
|
||||||
|
"localhost"
|
||||||
|
"host.docker.internal"
|
||||||
|
"dev.runcats.test"
|
||||||
|
"landing.runcats.test"
|
||||||
|
"api.runcats.test"
|
||||||
|
"mail.runcats.test"
|
||||||
|
"kibana.runcats.test"
|
||||||
|
"img.runcats.test"
|
||||||
|
"docs.runcats.test"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user