From 640476ab01c501bbaa5b7854b561201bfe40d2ea Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Tue, 17 Jun 2025 22:08:20 -0400 Subject: fmt --- system/default.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'system') diff --git a/system/default.nix b/system/default.nix index 2124703..8d82a9d 100644 --- a/system/default.nix +++ b/system/default.nix @@ -1,8 +1,10 @@ -{ config, pkgs, ... }: - { + config, + pkgs, + ... +}: { # allow flakes - nix.settings.experimental-features = [ "nix-command" "flakes" ]; + nix.settings.experimental-features = ["nix-command" "flakes"]; # allow unfree packages nixpkgs.config.allowUnfree = true; @@ -99,7 +101,7 @@ users.users.${config.user} = { isNormalUser = true; description = config.fullName; - extraGroups = [ "networkmanager" "wheel" "sys" "video" "audio" "docker" "libvirtd" ]; + extraGroups = ["networkmanager" "wheel" "sys" "video" "audio" "docker" "libvirtd"]; home = config.homePath; shell = pkgs.zsh; }; -- cgit v1.2.3-freya