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",
"stable": "stable",
"tsm": "tsm",
"utils": "utils",
"zig-overlay": "zig-overlay",
"zls": "zls"
}
@ -1063,26 +1062,6 @@
"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": {
"inputs": {
"hyprland-protocols": "hyprland-protocols",

View file

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

View file

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

View file

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