refactor: major config changes

This commit is contained in:
Dennis Schoepf 2026-02-04 19:02:27 +01:00
parent b2c8430125
commit ff32ecb811
14 changed files with 148 additions and 179 deletions

View file

@ -26,13 +26,19 @@
nix.settings.trusted-users = [ "dennis" ];
# Device specific overlays
nixpkgs.overlays = [];
nixpkgs.overlays = [ ];
# System Packages
environment.systemPackages = lib.mkAfter (
with pkgs;
[
rsync
# Some global devtools that are
# not included in project flakes
tree-sitter
nil
stylua
lua-language-server
]
);
@ -73,5 +79,8 @@
};
nix.enable = false;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
}