format tree

This commit is contained in:
zowoq 2024-07-24 19:05:26 +10:00 committed by Jörg Thalheim
parent 24547fcd6c
commit 92c55595d0
43 changed files with 476 additions and 357 deletions
modules/darwin/common

View file

@ -21,7 +21,9 @@ in
# TODO: refactor this to share /users with nixos
users.users = {
customer.openssh = { inherit authorizedKeys; };
customer.openssh = {
inherit authorizedKeys;
};
};
services.nix-daemon.enable = true;
@ -32,9 +34,7 @@ in
programs.info.enable = false;
nix.settings.trusted-users = [
"@admin"
];
nix.settings.trusted-users = [ "@admin" ];
# shouldn't need to set this for a nix multi-user install
nix.gc.user = "root";
@ -48,9 +48,7 @@ in
"flakes"
];
environment.systemPackages = with pkgs; [
htop
];
environment.systemPackages = with pkgs; [ htop ];
system.includeUninstaller = false;