mirror of https://git.jolheiser.com/dotnix.git
parent
d19006ea44
commit
292a02af38
|
@ -11,7 +11,7 @@
|
|||
./git.nix
|
||||
./go.nix
|
||||
./gpg.nix
|
||||
./helix.nix
|
||||
#./helix.nix
|
||||
./jq.nix
|
||||
./lazygit.nix
|
||||
./nushell.nix
|
||||
|
@ -44,6 +44,7 @@
|
|||
jolheiser.git-age
|
||||
jolheiser.templ
|
||||
tclip
|
||||
jolheiser-helix
|
||||
];
|
||||
activation.report-changes = config.lib.dag.entryAnywhere ''
|
||||
${pkgs.nvd}/bin/nvd --nix-bin-dir=${pkgs.nix}/bin diff $oldGenPath $newGenPath
|
||||
|
|
21
flake.lock
21
flake.lock
|
@ -88,6 +88,26 @@
|
|||
"type": "github"
|
||||
}
|
||||
},
|
||||
"helix": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
"nixpkgs"
|
||||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1695336689,
|
||||
"narHash": "sha256-Vy4xgtnumNX6Na3uh0U6NvZu6QEOi1xnJEYKM9tcSS4=",
|
||||
"ref": "refs/heads/main",
|
||||
"rev": "295193b6e7c022e7ffe6be9d0684d6c74a468d93",
|
||||
"revCount": 6,
|
||||
"type": "git",
|
||||
"url": "https://git.jojodev.com/jolheiser/helix.drv"
|
||||
},
|
||||
"original": {
|
||||
"type": "git",
|
||||
"url": "https://git.jojodev.com/jolheiser/helix.drv"
|
||||
}
|
||||
},
|
||||
"home-manager": {
|
||||
"inputs": {
|
||||
"nixpkgs": [
|
||||
|
@ -180,6 +200,7 @@
|
|||
"agenix": "agenix",
|
||||
"flake-utils": "flake-utils",
|
||||
"golink": "golink",
|
||||
"helix": "helix",
|
||||
"home-manager": "home-manager",
|
||||
"jolheiser-nur": "jolheiser-nur",
|
||||
"nixpkgs": "nixpkgs",
|
||||
|
|
|
@ -24,6 +24,10 @@
|
|||
url = "git+https://git.jojodev.com/jolheiser/nur";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
helix = {
|
||||
url = "git+https://git.jojodev.com/jolheiser/helix.drv";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
# Other flakes
|
||||
golink = {
|
||||
|
@ -48,6 +52,7 @@
|
|||
home-manager,
|
||||
agenix,
|
||||
jolheiser-nur,
|
||||
helix,
|
||||
nixpkgs-py36,
|
||||
golink,
|
||||
tclip,
|
||||
|
@ -61,6 +66,7 @@
|
|||
};
|
||||
jolheiser = inputs.jolheiser-nur.packages.${prev.system};
|
||||
tclip = inputs.tclip.packages.${prev.system}.tclip;
|
||||
jolheiser-helix = inputs.helix.packages.${prev.system}.default;
|
||||
})
|
||||
golink.overlay
|
||||
];
|
||||
|
|
Loading…
Reference in New Issue