Compare commits

..

3 commits

Author SHA1 Message Date
b9e5a980c8
remove comments 2024-08-16 16:06:34 -05:00
9926d0a507
add utils meta package 2024-08-16 15:41:56 -05:00
cd7524e72a
switch to nimlangserver 2024-08-16 14:20:47 -05:00
4 changed files with 37 additions and 13 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,12 +1,11 @@
{ pkgs, ... }:
{ pkgs, flake, ... }:
{
environment.systemPackages = with pkgs; [
environment.systemPackages =
[ (flake.pkg "utils") ]
++ (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
nimlsp
nimlangserver
];
};
}