added devenv package

This commit is contained in:
John Lancaster
2025-05-26 18:43:16 +00:00
parent d21a7a22b1
commit 6a1eaf8500
3 changed files with 6 additions and 9 deletions

6
flake.lock generated
View File

@@ -40,11 +40,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1748026106,
"narHash": "sha256-6m1Y3/4pVw1RWTsrkAK2VMYSzG4MMIj7sqUy7o8th1o=",
"lastModified": 1748190013,
"narHash": "sha256-R5HJFflOfsP5FBtk+zE8FpL8uqE7n62jqOsADvVshhE=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "063f43f2dbdef86376cc29ad646c45c46e93234c",
"rev": "62b852f6c6742134ade1abdd2a21685fd617a291",
"type": "github"
},
"original": {

View File

@@ -29,16 +29,14 @@
virtualisation.docker.enable = true;
environment.systemPackages = with pkgs; [
git
devenv
];
})
args.home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.root = {
# environment.systemPackages = [
# pkgs.devenv
# ];
home.stateVersion = "24.11";
imports = [ ./git.nix ];
};
}

View File

@@ -1,6 +1,5 @@
{ ... }:
{
home.stateVersion = "24.11";
programs.git = {
enable = true;
extraConfig.credential.helper = "store --file ~/.git-credentials";