fix: hm pin to corresponding nixos version

This commit is contained in:
David Arnold 2021-07-09 11:46:01 -05:00
parent bf59976063
commit fe73d2a083
No known key found for this signature in database
GPG key ID: AB15A6AF1101390D
3 changed files with 6 additions and 5 deletions

View file

@ -251,15 +251,16 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1625694413, "lastModified": 1624228557,
"narHash": "sha256-goRLk1I/OMclS9i17g932wyHyjiKI+htbuFIWIkzTbw=", "narHash": "sha256-wwOqe73BsrXfRv1PhyXQFNC8iTET50KvE/HitdkRgxs=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "06ee8ec8dfc4554c374052cd7b7083765748af99", "rev": "35a24648d155843a4d162de98c17b1afd5db51e4",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nix-community", "owner": "nix-community",
"ref": "release-21.05",
"repo": "home-manager", "repo": "home-manager",
"type": "github" "type": "github"
} }

View file

@ -23,7 +23,7 @@
}; };
darwin.url = "github:LnL7/nix-darwin"; darwin.url = "github:LnL7/nix-darwin";
darwin.inputs.nixpkgs.follows = "latest"; darwin.inputs.nixpkgs.follows = "latest";
home.url = "github:nix-community/home-manager"; home.url = "github:nix-community/home-manager/release-21.05";
home.inputs.nixpkgs.follows = "nixos"; home.inputs.nixpkgs.follows = "nixos";
# naersk.url = "github:nmattia/naersk"; # naersk.url = "github:nmattia/naersk";
# naersk.inputs.nixpkgs.follows = "latest"; # naersk.inputs.nixpkgs.follows = "latest";

View file

@ -1,6 +1,6 @@
{ {
programs.direnv = { programs.direnv = {
enable = true; enable = true;
enableNixDirenvIntegration = true; nix-direnv.enable = true;
}; };
} }