From 6c6af12ef6905ee7b968b664f0bc3dd5a6ec780f Mon Sep 17 00:00:00 2001 From: k Date: Sun, 13 Jul 2025 10:35:02 -0400 Subject: [PATCH] clean up --- hosts/laptop/configuration.nix | 1 - hosts/server/configuration.nix | 4 ++-- hosts/server/home.nix | 5 ++++- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/hosts/laptop/configuration.nix b/hosts/laptop/configuration.nix index eb22c7f..a878c21 100644 --- a/hosts/laptop/configuration.nix +++ b/hosts/laptop/configuration.nix @@ -97,7 +97,6 @@ thermald.enable = true; }; - stylix = { enable = true; autoEnable = true; diff --git a/hosts/server/configuration.nix b/hosts/server/configuration.nix index 31a657c..e01d7b5 100644 --- a/hosts/server/configuration.nix +++ b/hosts/server/configuration.nix @@ -13,8 +13,8 @@ gc.automatic = true; settings = { experimental-features = ["nix-command" "flakes"]; - substituters = ["http://nix.dhilton.xyz/" "https://cache.nixos.org/"]; - trusted-public-keys = ["nix.dhilton.xyz:MOW060dF1A0/UXmPZBue9KMxCO13PHYFwx1X9hcdYZ4="]; + #substituters = ["http://nix.dhilton.xyz/" "https://cache.nixos.org/"]; + #trusted-public-keys = ["nix.dhilton.xyz:MOW060dF1A0/UXmPZBue9KMxCO13PHYFwx1X9hcdYZ4="]; }; }; diff --git a/hosts/server/home.nix b/hosts/server/home.nix index 3b1a21b..9d080c6 100644 --- a/hosts/server/home.nix +++ b/hosts/server/home.nix @@ -5,5 +5,8 @@ ... }: { imports = [../home/home_common.nix]; - home = {packages = with pkgs; [docker docker-compose neovim];}; + home = {packages = with pkgs; [docker docker-compose neovim waypipe];}; + services = { + syncthing.enable = true; + }; }