summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPreston Pan <ret2pop@nullring.xyz>2026-03-03 14:07:50 -0800
committerPreston Pan <ret2pop@nullring.xyz>2026-03-03 14:07:50 -0800
commit8b4440ed38648c0c77129144ab2868f511448735 (patch)
tree9076738e7cfe67a06d0ef45dd4b68ac69659c004
parent2a451ce8252544ed896dcf0c33cc1ca3650cb2a5 (diff)
fix resolution issue?
-rw-r--r--flake.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index c0b5123..0191615 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,5 +1,6 @@
{
- description = "Build my static site";
+ description = "Build my static site with my installer";
+
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
git-hooks = {
@@ -8,6 +9,7 @@
};
hyprnixmacs.url = "git+file:./nix";
};
+
outputs = { nixpkgs, git-hooks, hyprnixmacs, self, ... }:
let
system = "x86_64-linux";
@@ -34,7 +36,7 @@ fi
};
};
- emacsPackages = import ./nix/modules/home/emacs-packages.nix;
+ emacsPackages = import "${hyprnixmacs}/modules/home/emacs-packages.nix";
ci-emacs = pkgs.emacs-nox.pkgs.withPackages emacsPackages;
website = pkgs.stdenv.mkDerivation {
name = "org-publish-website";