add utils meta package

This commit is contained in:
Daylin Morgan 2024-08-16 14:20:54 -05:00
parent cd7524e72a
commit 9926d0a507
Signed by: daylin
GPG key ID: 950D13E9719334AD
3 changed files with 39 additions and 12 deletions

View file

@ -868,6 +868,7 @@
"roc": "roc",
"stable": "stable",
"tsm": "tsm",
"utils": "utils",
"zig-overlay": "zig-overlay",
"zls": "zls"
}
@ -1062,6 +1063,26 @@
"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,8 +10,10 @@
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";
lix.flake = false;
lix = {
url = "https://git.lix.systems/lix-project/lix/archive/main.tar.gz";
flake = false;
};
lix-module = {
url = "https://git.lix.systems/lix-project/nixos-module/archive/main.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
@ -28,6 +30,7 @@
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";
@ -35,6 +38,7 @@
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,6 +1,8 @@
{ pkgs, ... }:
{ pkgs, flake, ... }:
{
environment.systemPackages = with pkgs; [
environment.systemPackages =
[ (flake.pkg "utils") ]
++ (with pkgs; [
zk
quarto
cachix
@ -8,5 +10,5 @@
# nix-du # failing to build suddenly?
# https://github.com/symphorien/nix-du/issues/23
# maybe llvm related?
];
]);
}