diff options
author | sinanmohd <sinan@sinanmohd.com> | 2023-08-08 07:45:37 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2023-08-10 05:36:17 +0530 |
commit | aae7f5b6e7fefc263ce9d0932b341cb010e9ccd3 (patch) | |
tree | 65874635a2848bb4a9f676fe296ee6e3a3d6b495 /configuration.nix | |
parent | 4c093e4143ac53c6e1acd202eb6ae7b78f66d0d1 (diff) |
clean up: inconsistent list style
Diffstat (limited to 'configuration.nix')
-rw-r--r-- | configuration.nix | 21 |
1 files changed, 13 insertions, 8 deletions
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 |