Compare commits

..

No commits in common. "b9e5a980c8a984d3032b6246be7fc043c9598d55" and "cc1164d7051c896898327125bb61072931e9cb6d" have entirely different histories.

4 changed files with 13 additions and 37 deletions

View file

@ -868,7 +868,6 @@
"roc": "roc", "roc": "roc",
"stable": "stable", "stable": "stable",
"tsm": "tsm", "tsm": "tsm",
"utils": "utils",
"zig-overlay": "zig-overlay", "zig-overlay": "zig-overlay",
"zls": "zls" "zls": "zls"
} }
@ -1063,26 +1062,6 @@
"type": "github" "type": "github"
} }
}, },
"utils": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1723840834,
"narHash": "sha256-GGxqfcJ7utcqaC7dVHQLWLLdZb0yrlGxhpzpZ8hqiWg=",
"ref": "refs/heads/main",
"rev": "d92e70162fdc052148eae8d07066ba1c33eab6b0",
"revCount": 5,
"type": "git",
"url": "https://git.dayl.in/daylin/utils.git"
},
"original": {
"type": "git",
"url": "https://git.dayl.in/daylin/utils.git"
}
},
"xdph": { "xdph": {
"inputs": { "inputs": {
"hyprland-protocols": "hyprland-protocols", "hyprland-protocols": "hyprland-protocols",

View file

@ -10,10 +10,8 @@
nixos-wsl.url = "github:nix-community/NixOS-WSL"; nixos-wsl.url = "github:nix-community/NixOS-WSL";
nix-index-database.url = "github:nix-community/nix-index-database"; nix-index-database.url = "github:nix-community/nix-index-database";
lix = { lix.url = "https://git.lix.systems/lix-project/lix/archive/main.tar.gz";
url = "https://git.lix.systems/lix-project/lix/archive/main.tar.gz"; lix.flake = false;
flake = false;
};
lix-module = { lix-module = {
url = "https://git.lix.systems/lix-project/nixos-module/archive/main.tar.gz"; url = "https://git.lix.systems/lix-project/nixos-module/archive/main.tar.gz";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
@ -30,7 +28,6 @@
f1multiviewer.url = "github:daylinmorgan/f1multiviewer-flake"; f1multiviewer.url = "github:daylinmorgan/f1multiviewer-flake";
tsm.url = "github:daylinmorgan/tsm?dir=nix"; tsm.url = "github:daylinmorgan/tsm?dir=nix";
hyprman.url = "git+https://git.dayl.in/daylin/hyprman.git"; hyprman.url = "git+https://git.dayl.in/daylin/hyprman.git";
utils.url = "git+https://git.dayl.in/daylin/utils.git";
hyprman.inputs.nixpkgs.follows = "nixpkgs"; hyprman.inputs.nixpkgs.follows = "nixpkgs";
f1multiviewer.inputs.nixpkgs.follows = "nixpkgs"; f1multiviewer.inputs.nixpkgs.follows = "nixpkgs";
@ -38,7 +35,6 @@
pixi.inputs.nixpkgs.follows = "nixpkgs"; pixi.inputs.nixpkgs.follows = "nixpkgs";
roc.inputs.nixpkgs.follows = "nixpkgs"; roc.inputs.nixpkgs.follows = "nixpkgs";
tsm.inputs.nixpkgs.follows = "nixpkgs"; tsm.inputs.nixpkgs.follows = "nixpkgs";
utils.inputs.nixpkgs.follows = "nixpkgs";
zls.inputs.nixpkgs.follows = "nixpkgs"; zls.inputs.nixpkgs.follows = "nixpkgs";
zls.inputs.zig-overlay.follows = "zig-overlay"; zls.inputs.zig-overlay.follows = "zig-overlay";
zig-overlay.inputs.nixpkgs.follows = "nixpkgs"; zig-overlay.inputs.nixpkgs.follows = "nixpkgs";

View file

@ -1,11 +1,12 @@
{ pkgs, flake, ... }: { pkgs, ... }:
{ {
environment.systemPackages = environment.systemPackages = with pkgs; [
[ (flake.pkg "utils") ] zk
++ (with pkgs; [ quarto
zk cachix
quarto graphviz
cachix # nix-du # failing to build suddenly?
graphviz # https://github.com/symphorien/nix-du/issues/23
]); # maybe llvm related?
];
} }

View file

@ -15,7 +15,7 @@ in
nim-atlas nim-atlas
nimble nimble
nimlangserver nimlsp
]; ];
}; };
} }