From a04bbb02cc241a52871c3dfc5387b7dfcc50f62a Mon Sep 17 00:00:00 2001 From: Anthony Rodriguez Date: Thu, 5 Sep 2024 14:16:39 +0200 Subject: [PATCH] fix paths after changing directory structure --- hosts/common/sops.nix | 2 +- hosts/common/stylix.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/common/sops.nix b/hosts/common/sops.nix index f85038c..c895dbd 100644 --- a/hosts/common/sops.nix +++ b/hosts/common/sops.nix @@ -1,7 +1,7 @@ { hostname, username, ... }: { - sops.defaultSopsFile = ../secrets/secrets.yaml; + sops.defaultSopsFile = ../../secrets/secrets.yaml; sops.defaultSopsFormat = "yaml"; sops.age.keyFile = "/home/${username}/.config/sops/age/keys.txt"; diff --git a/hosts/common/stylix.nix b/hosts/common/stylix.nix index 440d58c..a6e7eb7 100644 --- a/hosts/common/stylix.nix +++ b/hosts/common/stylix.nix @@ -3,7 +3,7 @@ { stylix.enable = true; stylix.polarity = "dark"; - stylix.image = lib.mkDefault ../wallpapers/nix-wallpaper-nineish-catppuccin-frappe.svg; + stylix.image = lib.mkDefault ../../wallpapers/nix-wallpaper-nineish-catppuccin-frappe.svg; stylix.base16Scheme = "${pkgs.base16-schemes}/share/themes/catppuccin-frappe.yaml"; stylix.autoEnable = true;