updated to 23.11

This commit is contained in:
specCon18 2024-02-24 18:03:11 -05:00
parent 801f67a48f
commit 8006260b7f
5 changed files with 26 additions and 26 deletions

View file

@ -74,7 +74,7 @@
./hosts/katana/system-pkgs.nix ./hosts/katana/system-pkgs.nix
./modules/system/services/docker.nix ./modules/system/services/docker.nix
./modules/system/services/openssh.nix ./modules/system/services/openssh.nix
./modules/system/services/syncthing.nix # ./modules/system/services/syncthing.nix
./modules/system/services/tailscale.nix ./modules/system/services/tailscale.nix
] #extra modules to be loaded by nixos ] #extra modules to be loaded by nixos
[ [

View file

@ -67,7 +67,7 @@
displayManager.tuigreet.enable = false; displayManager.tuigreet.enable = false;
}; };
}; };
fonts.fonts = with pkgs; [ fonts.packages = with pkgs; [
(nerdfonts.override { fonts = [ "SourceCodePro" "DroidSansMono" ]; }) (nerdfonts.override { fonts = [ "SourceCodePro" "DroidSansMono" ]; })
]; ];
} }

View file

@ -9,7 +9,7 @@
ripgrep ripgrep
openssl openssl
tree tree
exa # exa
htop htop
zsh zsh
dig #dns lookup dig #dns lookup
@ -26,6 +26,6 @@
gitui gitui
spotify spotify
zulip zulip
surrealdb vscode
]; ];
} }

View file

@ -9,7 +9,7 @@
}; };
enableAutosuggestions = lib.mkDefault true; enableAutosuggestions = lib.mkDefault true;
enableCompletion = lib.mkDefault true; enableCompletion = lib.mkDefault true;
enableSyntaxHighlighting = lib.mkDefault true; syntaxHighlighting.enable = lib.mkDefault true;
shellAliases = { shellAliases = {
ls = "exa -l"; ls = "exa -l";
lsa = "exa -al"; lsa = "exa -al";

View file

@ -1,21 +1,21 @@
{config, lib, pkgs, modulesPath, ... }: # # {config, lib, pkgs, modulesPath, ... }:
{ # {
services.syncthing = { # services.syncthing = {
enable = true; # enable = true;
dataDir = "/home/speccon18"; # dataDir = "/home/speccon18";
openDefaultPorts = true; # openDefaultPorts = true;
configDir = "/home/speccon18/.config/syncthing"; # configDir = "/home/speccon18/.config/syncthing";
user = "speccon18"; # user = "speccon18";
group = "users"; # group = "users";
guiAddress = "0.0.0.0:8384"; # guiAddress = "0.0.0.0:8384";
overrideDevices = true; # overrideDevices = true;
overrideFolders = true; # overrideFolders = true;
devices = { # devices = {
"syncthing_server" = { id = "N3UGNP6-ZU6JHBX-WNJDEUF-FV5DOWA-VAGFDYN-FIIMFRR-C3HGQHU-WOEIUQ6"; }; # "syncthing_server" = { id = "N3UGNP6-ZU6JHBX-WNJDEUF-FV5DOWA-VAGFDYN-FIIMFRR-C3HGQHU-WOEIUQ6"; };
}; # };
extraOptions.gui = { # extraOptions.gui = {
user = "admin"; # user = "admin";
password = "Strife-Rerun-Lily-Pushover-Alongside-Raider0-Freebase"; # password = "Strife-Rerun-Lily-Pushover-Alongside-Raider0-Freebase";
}; # };
}; # };
} # }