Other small formatting changes

This commit is contained in:
Bun 2025-03-18 04:43:14 -04:00
parent 8ecb59be3e
commit 30fc0dc800
4 changed files with 13 additions and 17 deletions

View file

@ -7,13 +7,16 @@
};
config = {
nix.settings = {
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
trusted-users = [ "@wheel" ];
nix = {
package = pkgs.lix;
settings = {
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
trusted-users = [ "@wheel" ];
};
};
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) config.nixpkgs.allowUnfreePackages;