Compare commits
1 Commits
bd721346df
...
file-serve
Author | SHA1 | Date | |
---|---|---|---|
2b597ff20a |
1854
flake.lock
generated
1854
flake.lock
generated
File diff suppressed because it is too large
Load Diff
13
flake.nix
13
flake.nix
@@ -2,20 +2,16 @@
|
|||||||
description = "Nettika's NixOS Configurations";
|
description = "Nettika's NixOS Configurations";
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
||||||
shelvacu.url = "git+https://git.uninsane.org/shelvacu/nix-stuff";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... }@inputs:
|
outputs = { self, nixpkgs, ... }@inputs:
|
||||||
let
|
let
|
||||||
secrets = builtins.fromJSON (builtins.readFile ./secrets.json);
|
secrets = builtins.fromJSON (builtins.readFile ./secrets.json);
|
||||||
in
|
in {
|
||||||
{
|
|
||||||
nixosModules = {
|
nixosModules = {
|
||||||
common = import ./modules/common.nix;
|
common = import ./modules/common.nix;
|
||||||
prompt = import ./modules/prompt.nix;
|
|
||||||
server = import ./modules/server.nix;
|
server = import ./modules/server.nix;
|
||||||
zerotier = import ./modules/zerotier.nix;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
@@ -29,11 +25,6 @@
|
|||||||
modules = [ ./hosts/monolith ];
|
modules = [ ./hosts/monolith ];
|
||||||
specialArgs = { inherit self inputs secrets; };
|
specialArgs = { inherit self inputs secrets; };
|
||||||
};
|
};
|
||||||
quasar = nixpkgs.lib.nixosSystem {
|
|
||||||
system = "x86_64-linux";
|
|
||||||
modules = [ ./hosts/quasar ];
|
|
||||||
specialArgs = { inherit self inputs secrets; };
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,11 @@
|
|||||||
{ pkgs, config, secrets, ... }:
|
{ pkgs, config, secrets, ... }:
|
||||||
{
|
{
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
restic
|
||||||
|
libnotify
|
||||||
|
backblaze-b2
|
||||||
|
];
|
||||||
|
|
||||||
systemd.services = {
|
systemd.services = {
|
||||||
notify-backup-b2-failed = {
|
notify-backup-b2-failed = {
|
||||||
description = "Notify on failed backup to B2";
|
description = "Notify on failed backup to B2";
|
||||||
@@ -14,14 +20,14 @@
|
|||||||
script = "notify-send -u critical \"Backup to B2 failed\" \"$(journalctl -u restic-backups-b2 -n 5 -o cat)\"";
|
script = "notify-send -u critical \"Backup to B2 failed\" \"$(journalctl -u restic-backups-b2 -n 5 -o cat)\"";
|
||||||
};
|
};
|
||||||
restic-backups-b2 = {
|
restic-backups-b2 = {
|
||||||
onFailure = [ "notify-backup-b2-failed.service" ];
|
onFailure = ["notify-backup-b2-failed.service"];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.etc = {
|
environment.etc = {
|
||||||
"restic-env".text = ''
|
"restic-env".text = ''
|
||||||
B2_ACCOUNT_ID="${secrets.b2.accountId}"
|
export B2_ACCOUNT_ID="${secrets.b2.accountId}"
|
||||||
B2_ACCOUNT_KEY="${secrets.b2.accountKey}"
|
export B2_ACCOUNT_KEY="${secrets.b2.accountKey}"
|
||||||
'';
|
'';
|
||||||
"restic-password".text = secrets.restic.password;
|
"restic-password".text = secrets.restic.password;
|
||||||
};
|
};
|
||||||
@@ -33,11 +39,13 @@
|
|||||||
repository = "b2:marauder-backup";
|
repository = "b2:marauder-backup";
|
||||||
passwordFile = "/etc/restic-password";
|
passwordFile = "/etc/restic-password";
|
||||||
paths = [
|
paths = [
|
||||||
"${config.users.users.nettika.home}/Artwork"
|
"${config.users.users.nettika.home}/Desktop"
|
||||||
"${config.users.users.nettika.home}/Documents"
|
"${config.users.users.nettika.home}/Documents"
|
||||||
"${config.users.users.nettika.home}/Music"
|
"${config.users.users.nettika.home}/Music"
|
||||||
"${config.users.users.nettika.home}/Pictures"
|
"${config.users.users.nettika.home}/Pictures"
|
||||||
"${config.users.users.nettika.home}/Projects"
|
"${config.users.users.nettika.home}/Projects"
|
||||||
|
"${config.users.users.nettika.home}/Public"
|
||||||
|
"${config.users.users.nettika.home}/Templates"
|
||||||
"${config.users.users.nettika.home}/Videos"
|
"${config.users.users.nettika.home}/Videos"
|
||||||
];
|
];
|
||||||
pruneOpts = [
|
pruneOpts = [
|
||||||
|
@@ -1,18 +1,11 @@
|
|||||||
{ self, pkgs, inputs, ... }:
|
{ self, pkgs, inputs, secrets, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
self.nixosModules.common
|
self.nixosModules.common
|
||||||
self.nixosModules.prompt
|
|
||||||
self.nixosModules.zerotier
|
|
||||||
./backup.nix
|
./backup.nix
|
||||||
./dev.nix
|
|
||||||
./printing.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
networking.hostName = "marauder";
|
||||||
hostName = "marauder";
|
|
||||||
firewall.enable = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
"/" = {
|
"/" = {
|
||||||
@@ -41,21 +34,19 @@
|
|||||||
"sd_mod"
|
"sd_mod"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
kernelModules = [ "kvm-amd" ];
|
kernelModules = ["kvm-amd"];
|
||||||
kernelParams = [ "amd_pstate=active" ];
|
kernelParams = [ "amd_pstate=active" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
enableRedistributableFirmware = true;
|
enableRedistributableFirmware = true;
|
||||||
cpu.amd.updateMicrocode = true;
|
cpu.amd.updateMicrocode = true;
|
||||||
graphics = {
|
opengl = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enable32Bit = true;
|
driSupport32Bit = true;
|
||||||
extraPackages = [ pkgs.vaapiVdpau ];
|
extraPackages = [pkgs.vaapiVdpau];
|
||||||
};
|
};
|
||||||
nvidia = {
|
nvidia.prime = {
|
||||||
open = true;
|
|
||||||
prime = {
|
|
||||||
offload = {
|
offload = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableOffloadCmd = true;
|
enableOffloadCmd = true;
|
||||||
@@ -64,43 +55,42 @@
|
|||||||
nvidiaBusId = "PCI:01:00:0";
|
nvidiaBusId = "PCI:01:00:0";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
environment = {
|
environment.systemPackages = with pkgs; [
|
||||||
systemPackages = [
|
|
||||||
inputs.shelvacu.packages.x86_64-linux.sm64coopdx
|
|
||||||
] ++ (with pkgs; [
|
|
||||||
# Chat clients
|
# Chat clients
|
||||||
discord
|
discord
|
||||||
slack
|
|
||||||
element-desktop
|
element-desktop
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
|
|
||||||
# Browsers
|
# Browsers
|
||||||
firefox
|
firefox
|
||||||
filezilla
|
|
||||||
|
# Coding
|
||||||
|
vscode
|
||||||
|
|
||||||
# Art and 3D
|
# Art and 3D
|
||||||
inkscape
|
inkscape
|
||||||
gimp
|
|
||||||
krita
|
|
||||||
openscad-unstable
|
openscad-unstable
|
||||||
bambu-studio
|
bambu-studio
|
||||||
orca-slicer
|
|
||||||
|
|
||||||
# Multimedia
|
# Multimedia
|
||||||
vlc
|
vlc
|
||||||
ffmpeg
|
|
||||||
(callPackage ./ffcheck.nix { })
|
|
||||||
|
|
||||||
# Misc
|
# Productivity
|
||||||
obsidian
|
obsidian
|
||||||
intiface-central
|
];
|
||||||
prismlauncher
|
|
||||||
blender
|
programs.bash = {
|
||||||
mullvad-vpn
|
promptInit = ''
|
||||||
qbittorrent
|
PS1="\[\e]0;\u@\h: \w\a\]" # window title
|
||||||
]);
|
PS1+="\n"
|
||||||
|
PS1+="\$(printf \"%*s\" \$((\$COLUMNS + 9)) \"\[\e[1;33m\]\$(git branch --show-current 2>/dev/null)\")" # git branch
|
||||||
|
PS1+="\[\e[1G\]" # move cursor to beginning of line
|
||||||
|
PS1+="💜" # prompt symbol
|
||||||
|
PS1+="\[\033[1;$((UID ? 32 : 31))m\]" # prompt color
|
||||||
|
PS1+="[\u@\h:\w]\\$"
|
||||||
|
PS1+="\[\033[0m\] " # reset color
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.steam = {
|
programs.steam = {
|
||||||
@@ -109,26 +99,9 @@
|
|||||||
dedicatedServer.openFirewall = true;
|
dedicatedServer.openFirewall = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.ssh.extraConfig = ''
|
|
||||||
Host quasar
|
|
||||||
HostName consortium.chat
|
|
||||||
IdentityFile ~/.ssh/LightsailDefaultKey-us-west-2.pem
|
|
||||||
|
|
||||||
Host monolith
|
|
||||||
HostName 10.243.210.154
|
|
||||||
|
|
||||||
Host fennbox
|
|
||||||
HostName 10.243.109.199
|
|
||||||
User fenn
|
|
||||||
'';
|
|
||||||
|
|
||||||
programs.nix-ld = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
enable = true;
|
enable = true;
|
||||||
videoDrivers = [ "nvidia" ];
|
videoDrivers = ["nvidia"];
|
||||||
desktopManager = {
|
desktopManager = {
|
||||||
cinnamon.enable = true;
|
cinnamon.enable = true;
|
||||||
xterm.enable = false;
|
xterm.enable = false;
|
||||||
@@ -147,14 +120,8 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
services.mullvad-vpn = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.mullvad-vpn; # Include GUI
|
|
||||||
};
|
|
||||||
|
|
||||||
promptEmoji = "💜";
|
|
||||||
|
|
||||||
time.timeZone = "America/Los_Angeles";
|
time.timeZone = "America/Los_Angeles";
|
||||||
|
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -1,20 +0,0 @@
|
|||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
environment.variables = {
|
|
||||||
VISUAL = "code --wait";
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
vscode
|
|
||||||
kotlin
|
|
||||||
rustup
|
|
||||||
pyenv
|
|
||||||
gcc
|
|
||||||
nixd
|
|
||||||
nixpkgs-fmt
|
|
||||||
];
|
|
||||||
|
|
||||||
programs.direnv = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
}
|
|
@@ -1,3 +0,0 @@
|
|||||||
{ writeShellScriptBin, ffmpeg }: writeShellScriptBin "ffcheck" ''
|
|
||||||
${ffmpeg}/bin/ffmpeg -v error -stats -hide_banner -i "$1" -c copy -f null -
|
|
||||||
''
|
|
@@ -1,16 +0,0 @@
|
|||||||
{ pkgs, ... }:
|
|
||||||
{
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
system-config-printer
|
|
||||||
];
|
|
||||||
|
|
||||||
services.printing = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
services.avahi = {
|
|
||||||
enable = true;
|
|
||||||
nssmdns4 = true;
|
|
||||||
openFirewall = true;
|
|
||||||
};
|
|
||||||
}
|
|
@@ -1,18 +1,15 @@
|
|||||||
{ self, pkgs, ... }:
|
{ self, pkgs, secrets, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
self.nixosModules.common
|
self.nixosModules.common
|
||||||
self.nixosModules.prompt
|
|
||||||
self.nixosModules.server
|
self.nixosModules.server
|
||||||
self.nixosModules.zerotier
|
|
||||||
./dns.nix
|
./dns.nix
|
||||||
./vault.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
networking = {
|
networking = {
|
||||||
hostName = "monolith";
|
hostName = "monolith";
|
||||||
hostId = "44551c32";
|
hostId = "44551c32";
|
||||||
firewall.allowedTCPPorts = [ 8000 ];
|
firewall.allowedTCPPorts = [ 80 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
@@ -41,54 +38,12 @@
|
|||||||
supportedFilesystems = [ "zfs" ];
|
supportedFilesystems = [ "zfs" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
services.static-web-server = {
|
||||||
rclone
|
|
||||||
beets
|
|
||||||
flac
|
|
||||||
screen
|
|
||||||
rustup
|
|
||||||
gcc
|
|
||||||
(callPackage ../marauder/ffcheck.nix { })
|
|
||||||
htop
|
|
||||||
mp3val
|
|
||||||
];
|
|
||||||
|
|
||||||
services.jellyfin = {
|
|
||||||
enable = true;
|
enable = true;
|
||||||
openFirewall = true;
|
listen = "[::]:80";
|
||||||
|
root = "/srv/www";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.navidrome = {
|
|
||||||
enable = true;
|
|
||||||
openFirewall = true;
|
|
||||||
settings = {
|
|
||||||
Address = "0.0.0.0";
|
|
||||||
MusicFolder = "/library/music";
|
|
||||||
Scanner.GroupAlbumReleases = "true";
|
|
||||||
ScanSchedule = "0";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
systemd = {
|
|
||||||
services.reboot = {
|
|
||||||
description = "Reboot the system";
|
|
||||||
serviceConfig = {
|
|
||||||
Type = "oneshot";
|
|
||||||
ExecStart = "${pkgs.systemd}/bin/systemctl reboot";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
timers.reboot = {
|
|
||||||
description = "Reboot the system every two hours";
|
|
||||||
wantedBy = [ "timers.target" ];
|
|
||||||
timerConfig = {
|
|
||||||
OnBootSec = "6h";
|
|
||||||
Persistent = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
promptEmoji = "🏰";
|
|
||||||
|
|
||||||
time.timeZone = "America/Los_Angeles";
|
time.timeZone = "America/Los_Angeles";
|
||||||
|
|
||||||
system.stateVersion = "24.05";
|
system.stateVersion = "24.05";
|
||||||
|
@@ -3,16 +3,22 @@
|
|||||||
systemd.services.update-dns = {
|
systemd.services.update-dns = {
|
||||||
serviceConfig.Type = "oneshot";
|
serviceConfig.Type = "oneshot";
|
||||||
description = "Update the leaf.ninja DNS records";
|
description = "Update the leaf.ninja DNS records";
|
||||||
path = with pkgs; [ curl ];
|
path = with pkgs; [ curl jq ];
|
||||||
script = ''
|
script = ''
|
||||||
public_ip=$(curl -s https://ifconfig.me/ip)
|
public_ip=$(curl -s https://ifconfig.me/ip)
|
||||||
endpoint="https://api.gandi.net/v5/livedns/domains/leaf.ninja/records"
|
endpoint="https://api.gandi.net/v5/livedns/domains/leaf.ninja/records"
|
||||||
curl \
|
curl -s \
|
||||||
-X PUT \
|
-X PUT \
|
||||||
-H "Authorization: Bearer ${secrets.gandi.token}" \
|
-H "Authorization: Bearer ${secrets.gandi.token}" \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-d "{\"rrset_values\":[\"$public_ip\"]}" \
|
-d "{\"rrset_values\":[\"$public_ip\"]}" \
|
||||||
$endpoint/ostiary/A
|
"$ENDPOINT/%2A/A" | jq
|
||||||
|
curl -s \
|
||||||
|
-X PUT \
|
||||||
|
-H "Authorization: Bearer ${secrets.gandi.token}" \
|
||||||
|
-H "Content-Type: application/json" \
|
||||||
|
-d "{\"rrset_values\":[\"$public_ip\"]}" \
|
||||||
|
"$ENDPOINT/%40/A" | jq
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -1,20 +0,0 @@
|
|||||||
{ secrets, ... }:
|
|
||||||
{
|
|
||||||
services.vaultwarden = {
|
|
||||||
enable = true;
|
|
||||||
config = {
|
|
||||||
domain = "https://vault.leaf.ninja";
|
|
||||||
signupsAllowed = false;
|
|
||||||
rocketAddress = "0.0.0.0";
|
|
||||||
rocketPort = 8222;
|
|
||||||
smtpHost = "smtp.migadu.com";
|
|
||||||
smtpFrom = "vaultwarden@leaf.ninja";
|
|
||||||
smtpPort = 587;
|
|
||||||
smtpSecurity = "starttls";
|
|
||||||
smtpUsername = "vaultwarden@leaf.ninja";
|
|
||||||
smtpPassword = secrets.vaultwarden.smtpPassword;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
networking.firewall.allowedTCPPorts = [ 8222 ];
|
|
||||||
}
|
|
@@ -1,54 +0,0 @@
|
|||||||
{ self, modulesPath, pkgs, config, secrets, ... }:
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
"${modulesPath}/virtualisation/amazon-image.nix"
|
|
||||||
self.nixosModules.common
|
|
||||||
self.nixosModules.prompt
|
|
||||||
self.nixosModules.server
|
|
||||||
];
|
|
||||||
|
|
||||||
networking = {
|
|
||||||
hostName = "quasar";
|
|
||||||
domain = "consortium.chat";
|
|
||||||
firewall.allowedTCPPorts = [ 80 443 ];
|
|
||||||
};
|
|
||||||
|
|
||||||
services.postgresql = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
services.caddy = {
|
|
||||||
enable = true;
|
|
||||||
virtualHosts = {
|
|
||||||
"${config.networking.domain}".extraConfig = ''
|
|
||||||
reverse_proxy localhost:8008
|
|
||||||
header Strict-Transport-Security "max-age=63072000; includeSubDomains;"
|
|
||||||
'';
|
|
||||||
"matrix.${config.networking.domain}".extraConfig = ''
|
|
||||||
reverse_proxy /_matrix/* localhost:8008
|
|
||||||
reverse_proxy /_synapse/client/* localhost:8008
|
|
||||||
'';
|
|
||||||
"admin.${config.networking.domain}".extraConfig = ''
|
|
||||||
root * ${pkgs.synapse-admin}
|
|
||||||
file_server
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
services.matrix-synapse = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
server_name = config.networking.domain;
|
|
||||||
serve_server_wellknown = true;
|
|
||||||
registration_shared_secret = secrets.synapse."consortium.chat".registration-shared-secret;
|
|
||||||
macaroon_secret_key = secrets.synapse."consortium.chat".macaroon-secret-key;
|
|
||||||
form_secret = secrets.synapse."consortium.chat".form-secret;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
promptEmoji = "🌟";
|
|
||||||
|
|
||||||
time.timeZone = "America/Los_Angeles";
|
|
||||||
|
|
||||||
system.stateVersion = "24.05";
|
|
||||||
}
|
|
@@ -1,11 +1,9 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, secrets, ... }:
|
||||||
{
|
{
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
experimental-features = [ "nix-command" "flakes" ];
|
experimental-features = [ "nix-command" "flakes" ];
|
||||||
substituters = [ "https://nixcache.shelvacu.com" ];
|
|
||||||
trusted-public-keys = [ "nixcache.shelvacu.com:73u5ZGBpPRoVZfgNJQKYYBt9K9Io/jPwgUfuOLsJbsM=" ];
|
|
||||||
trusted-users = [ "@wheel" ];
|
trusted-users = [ "@wheel" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -16,10 +14,6 @@
|
|||||||
|
|
||||||
security.sudo.wheelNeedsPassword = false;
|
security.sudo.wheelNeedsPassword = false;
|
||||||
|
|
||||||
environment.variables = {
|
|
||||||
EDITOR = "nano";
|
|
||||||
};
|
|
||||||
|
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
lfs.enable = true;
|
lfs.enable = true;
|
||||||
@@ -41,6 +35,11 @@
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.zerotierone = {
|
||||||
|
enable = true;
|
||||||
|
joinNetworks = secrets.zerotier.networks;
|
||||||
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
git-crypt
|
git-crypt
|
||||||
jq
|
jq
|
||||||
|
@@ -1,10 +0,0 @@
|
|||||||
{ lib, config, ... }:
|
|
||||||
{
|
|
||||||
options.promptEmoji = lib.mkOption {
|
|
||||||
type = lib.types.str;
|
|
||||||
};
|
|
||||||
|
|
||||||
config.programs.bash.promptInit = ''
|
|
||||||
PS1="\[\e]0;\u@\h: \w\a\]\n${config.promptEmoji} \[\033[1;$((UID ? 32 : 31))m\]\w \\$\[\033[0m\] "
|
|
||||||
'';
|
|
||||||
}
|
|
@@ -1,7 +0,0 @@
|
|||||||
{ secrets, ... }:
|
|
||||||
{
|
|
||||||
services.zerotierone = {
|
|
||||||
enable = true;
|
|
||||||
joinNetworks = secrets.zerotier.networks;
|
|
||||||
};
|
|
||||||
}
|
|
BIN
secrets.json
BIN
secrets.json
Binary file not shown.
Reference in New Issue
Block a user