diff options
author | tzlil <tzlils@protonmail.com> | 2023-02-17 17:46:47 +0200 |
---|---|---|
committer | tzlil <tzlils@protonmail.com> | 2023-02-17 17:46:47 +0200 |
commit | 222c7e35d7e9507f6eb8d67bb7af3ef9e623d0f3 (patch) | |
tree | 9b7f8ba8debdca1c2ca3739844d0fe4b3113209e /profiles/core.nix | |
parent | 3c3e4531dac7f4ab591bf391be72a11121b45673 (diff) |
added alejandra as formatter and formatted everything
Diffstat (limited to 'profiles/core.nix')
-rw-r--r-- | profiles/core.nix | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/profiles/core.nix b/profiles/core.nix index 5f48baa..1cd8ab5 100644 --- a/profiles/core.nix +++ b/profiles/core.nix @@ -1,6 +1,10 @@ -{ pkgs, lib, config, inputs, ... }: - { + pkgs, + lib, + config, + inputs, + ... +}: { imports = [ ../profiles/security.nix ../profiles/network.nix @@ -23,10 +27,10 @@ users.mutableUsers = false; environment.defaultPackages = lib.mkForce []; - age.identityPaths = [ "/nix/persist/etc/ssh/ssh_host_ed25519_key" ]; + age.identityPaths = ["/nix/persist/etc/ssh/ssh_host_ed25519_key"]; programs.command-not-found.dbPath = inputs.programsdb.packages.${pkgs.system}.programs-sqlite; # save uid/guid - environment.persistence."/nix/persist".directories = [ "/var/lib/nixos" ]; + environment.persistence."/nix/persist".directories = ["/var/lib/nixos"]; }; -} \ No newline at end of file +} |