moved more out of common config

This commit is contained in:
Leyla Becker 2024-11-24 13:07:15 -06:00
parent aa7c2a2a15
commit fa3cb19c0b
7 changed files with 60 additions and 174 deletions

View file

@ -0,0 +1,14 @@
{
inputs,
pkgs,
...
}: {
nix = {
nixPath = ["nixpkgs=${inputs.nixpkgs}"];
};
environment.systemPackages = with pkgs; [
# nix langauge server
nixd
];
}