diff options
| author | Preston Pan <ret2pop@nullring.xyz> | 2026-03-03 14:07:50 -0800 |
|---|---|---|
| committer | Preston Pan <ret2pop@nullring.xyz> | 2026-03-03 14:07:50 -0800 |
| commit | 8b4440ed38648c0c77129144ab2868f511448735 (patch) | |
| tree | 9076738e7cfe67a06d0ef45dd4b68ac69659c004 /flake.nix | |
| parent | 2a451ce8252544ed896dcf0c33cc1ca3650cb2a5 (diff) | |
fix resolution issue?
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -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"; |
