From f809cb560f9b35fac5eb276603701c29988b9cb4 Mon Sep 17 00:00:00 2001 From: sstent Date: Thu, 12 Oct 2023 17:37:25 +0000 Subject: [PATCH] adding core pkgs --- hosts/common.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/hosts/common.nix b/hosts/common.nix index 30e76a4..385d4bc 100644 --- a/hosts/common.nix +++ b/hosts/common.nix @@ -63,7 +63,16 @@ config = { nix.extraOptions = '' experimental-features = nix-command flakes ''; - nix.nixPath = [ "nixpkgs=pkgs.outPath" ]; +nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ]; +# nix.nixPath = [ "nixpkgs=pkgs.outPath" ]; + + environment.systemPackages = [ + pkgs.git + pkgs.home-manager + pkgs.sops + pkgs.ssh-to-age + pkgs.age + ]; }; }