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/users | |
parent | 01d012473d4311d4f4e5a0831d912bc4b8c61639 (diff) |
fix: format flake with `nixfmt-rfc-style`
Diffstat (limited to 'modules/users')
-rw-r--r-- | modules/users/default.nix | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/modules/users/default.nix b/modules/users/default.nix index 027ca0f..219f577 100644 --- a/modules/users/default.nix +++ b/modules/users/default.nix @@ -6,7 +6,13 @@ uid = 1000; home = "/home/tdback"; group = "tdback"; - extraGroups = [ "wheel" "users" "networkmanager" "video" "audio" ]; + extraGroups = [ + "wheel" + "users" + "networkmanager" + "video" + "audio" + ]; shell = pkgs.bash; ignoreShellProgramCheck = true; }; |