From e93f8124e5a4e7d8ab48705bc2d85fba20718be8 Mon Sep 17 00:00:00 2001 From: Guanran Wang Date: Sat, 20 Jul 2024 12:15:17 +0800 Subject: [PATCH] home: move flake repo directory --- home/applications/nix/default.nix | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/home/applications/nix/default.nix b/home/applications/nix/default.nix index 8d81ef4..1105ab8 100644 --- a/home/applications/nix/default.nix +++ b/home/applications/nix/default.nix @@ -1,28 +1,27 @@ {pkgs, ...}: { home.packages = with pkgs; [ # lsp - nil alejandra - statix deadnix + nil + statix # nixpkgs PRs - nixfmt-rfc-style - nix-update nix-init + nix-update + nixfmt-rfc-style nixpkgs-review # misc - nh - nix-output-monitor - nix-index - nix-tree - comma - sops colmena + comma + nh + nix-index + nix-output-monitor + nix-tree + sops ]; - # for `nh` - # yes, i know, weird and long path - home.sessionVariables.FLAKE = "/home/guanranwang/Documents/Projects/git-repos/github.com/Guanran928/flake"; + # nh + home.sessionVariables.FLAKE = "/home/guanranwang/Documents/Projects/flake"; }