diff --git a/nixos/users/albert/default.nix b/nixos/users/albert/default.nix index 730aca0a..26ef8c51 100644 --- a/nixos/users/albert/default.nix +++ b/nixos/users/albert/default.nix @@ -23,12 +23,14 @@ in { # No sudo password security.sudo.extraRules = [ - { users = [ "albert" ]; - commands = [ - { command = "ALL"; - options = [ "NOPASSWD" ]; - } - ]; - } -]; + { + users = [ "albert" ]; + commands = [ + { + command = "ALL"; + options = [ "NOPASSWD" ]; + } + ]; + } + ]; } \ No newline at end of file