Compare commits

...

3 commits

Author SHA1 Message Date
fade623beb
chore: move puppet lsp package to nixvim flake
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-09-30 10:06:13 +02:00
11e6ed16f9
chore: nix flake update
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-09-30 09:44:07 +02:00
97fe6502da
feat: add puppet lsp
Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
2025-09-30 09:38:01 +02:00
2 changed files with 15 additions and 13 deletions

26
flake.lock generated
View file

@ -488,11 +488,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1758791193, "lastModified": 1759143472,
"narHash": "sha256-F8WmEwFoHsnix7rt290R0rFXNJiMbClMZyIC/e+HYf0=", "narHash": "sha256-TvODmeR2W7yX/JmOCmP+lAFNkTT7hAxYcF3Kz8SZV3w=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "25e53aa156d47bad5082ff7618f5feb1f5e02d01", "rev": "5ed4e25ab58fd4c028b59d5611e14ea64de51d23",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -535,11 +535,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1758690382, "lastModified": 1759036355,
"narHash": "sha256-NY3kSorgqE5LMm1LqNwGne3ZLMF2/ILgLpFr1fS4X3o=", "narHash": "sha256-0m27AKv6ka+q270dw48KflE0LwQYrO7Fm4/2//KCVWg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e643668fd71b949c53f8626614b21ff71a07379d", "rev": "e9f00bd893984bc8ce46c895c3bf7cac95331127",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -591,11 +591,11 @@
"pre-commit-hooks": "pre-commit-hooks" "pre-commit-hooks": "pre-commit-hooks"
}, },
"locked": { "locked": {
"lastModified": 1759050748, "lastModified": 1759219372,
"narHash": "sha256-WsCrvz6yQOCmpGD5ch/MPXsMedo/OeL2YN0YlMplI34=", "narHash": "sha256-WcT8Ai+6RYI8xZ55FsV2GpomEYT3W1xAOW10+3SsbWQ=",
"ref": "refs/heads/main", "ref": "refs/heads/main",
"rev": "8bd9c170c0d543c90d12249fdffaa79b6cb2d4f0", "rev": "06bfb44459072836b3eb5f4d2f934485f97c0643",
"revCount": 167, "revCount": 169,
"type": "git", "type": "git",
"url": "https://git.escapeangle.com/lander/nixvim.git" "url": "https://git.escapeangle.com/lander/nixvim.git"
}, },
@ -692,11 +692,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1759030640, "lastModified": 1759188042,
"narHash": "sha256-53VP3BqMXJqD1He1WADTFyUnpta3mie56H7nC59tSic=", "narHash": "sha256-f9QC2KKiNReZDG2yyKAtDZh0rSK2Xp1wkPzKbHeQVRU=",
"owner": "Mic92", "owner": "Mic92",
"repo": "sops-nix", "repo": "sops-nix",
"rev": "9ac51832c70f2ff34fcc97b05fa74b4a78317f9e", "rev": "9fcfabe085281dd793589bdc770a2e577a3caa5d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -123,6 +123,7 @@
wodan = nixpkgs.lib.nixosSystem { wodan = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs outputs; }; specialArgs = { inherit inputs outputs; };
modules = [ modules = [
{ nixpkgs.overlays = [ overlays.additions ]; }
{ {
nixpkgs.overlays = [ nixpkgs.overlays = [
tidalcycles.overlays.default tidalcycles.overlays.default
@ -153,6 +154,7 @@
system = "x86_64-linux"; system = "x86_64-linux";
specialArgs = { inherit inputs outputs; }; specialArgs = { inherit inputs outputs; };
modules = [ modules = [
{ nixpkgs.overlays = [ overlays.additions ]; }
./hosts/heimdall ./hosts/heimdall
]; ];
}; };