diff --git a/hosts/default/configuration.nix b/hosts/default/configuration.nix index a0d48db..8256a55 100644 --- a/hosts/default/configuration.nix +++ b/hosts/default/configuration.nix @@ -5,6 +5,7 @@ config, pkgs, inputs, + lib, ... }: { imports = [ @@ -138,6 +139,7 @@ php83 php83Packages.composer pinentry-qt + prismlauncher python3 ripgrep rustup @@ -229,7 +231,7 @@ # networking.firewall.enable = false; security.pam.services.hyprlock = {}; networking.wg-quick.interfaces = { - wg0 = { + home = { address = ["10.154.125.2/24"]; dns = ["10.0.0.1"]; privateKeyFile = "/home/sprechtl/.wg-keys/priv"; @@ -245,6 +247,8 @@ ]; }; }; + systemd.services.wg-quick-home.wantedBy = lib.mkForce [ ]; + # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave diff --git a/modules/home-manager/dunst.nix b/modules/home-manager/dunst.nix index 5020db6..cddd0b8 100644 --- a/modules/home-manager/dunst.nix +++ b/modules/home-manager/dunst.nix @@ -3,6 +3,7 @@ enable = true; settings = { global = { + frame_width = "2"; frame_color = "#ebdbb2"; background = "#282828"; foreground = "#ebdbb2";