From 6a95a7b44c2ec9629b4f3c87649a89d9d3406c65 Mon Sep 17 00:00:00 2001 From: iFargle Date: Wed, 13 Dec 2023 08:51:02 +0900 Subject: [PATCH] bracket cleanup --- nixos/users/albert/default.nix | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) 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