From aae7f5b6e7fefc263ce9d0932b341cb010e9ccd3 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Tue, 8 Aug 2023 07:45:37 +0530 Subject: clean up: inconsistent list style --- configuration.nix | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) (limited to 'configuration.nix') diff --git a/configuration.nix b/configuration.nix index 50668d6..f043e33 100644 --- a/configuration.nix +++ b/configuration.nix @@ -5,8 +5,8 @@ let in { imports = [ - ./hardware-configuration.nix # hw scan - ./hardware/cez.nix + ./hardware-configuration.nix # hw scan + ./hardware/cez.nix ]; # boot @@ -24,7 +24,10 @@ in # users users.users.${user} = { isNormalUser = true; - extraGroups = [ "wheel" "adbusers" ]; + extraGroups = [ + "wheel" + "adbusers" + ]; packages = with pkgs; [ yt-dlp geoipWithDatabase @@ -72,11 +75,13 @@ in # nix nix = { - settings.experimental-features = [ "nix-command" "flakes" ]; - nixPath = - options.nix.nixPath.default ++ - [ "nixpkgs-overlays=/etc/nixos/overlays/" ] - ; + settings.experimental-features = [ + "nix-command" + "flakes" + ]; + nixPath = options.nix.nixPath.default ++ [ + "nixpkgs-overlays=/etc/nixos/overlays/" + ]; }; nixpkgs.overlays = with builtins; if pathExists ./overlays then -- cgit v1.2.3