diff options
author | tdback <tyler@tdback.net> | 2025-01-16 19:57:13 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-01-16 19:57:13 -0500 |
commit | 88017f5a874478dd82f306a5df88c38a8d06fcb6 (patch) | |
tree | 8806c58c4f21bb6a56d8530df8a93b256d44b4f3 /modules/profiles/common/default.nix | |
parent | 01d012473d4311d4f4e5a0831d912bc4b8c61639 (diff) |
fix: format flake with `nixfmt-rfc-style`
Diffstat (limited to 'modules/profiles/common/default.nix')
-rw-r--r-- | modules/profiles/common/default.nix | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/modules/profiles/common/default.nix b/modules/profiles/common/default.nix index 67d228a..da7df0f 100644 --- a/modules/profiles/common/default.nix +++ b/modules/profiles/common/default.nix @@ -1,9 +1,20 @@ -{ inputs, lib, pkgs, ... }: +{ + inputs, + lib, + pkgs, + ... +}: { nix = { settings = { - trusted-users = [ "@wheel" "root" ]; - experimental-features = lib.mkDefault [ "nix-command" "flakes" ]; + trusted-users = [ + "@wheel" + "root" + ]; + experimental-features = lib.mkDefault [ + "nix-command" + "flakes" + ]; auto-optimise-store = true; }; gc = { @@ -19,7 +30,7 @@ allowUnfreePredicate = (_: true); }; overlays = [ - (final: prev: { + (final: _prev: { unstable = import inputs.nixpkgs-unstable { system = final.system; config.allowUnfree = true; |