refactor: major config changes
This commit is contained in:
parent
b2c8430125
commit
ff32ecb811
14 changed files with 148 additions and 179 deletions
|
|
@ -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"
|
||||
];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue