From 0ac0521375e94e059108f6ea21426f98b10a6cd0 Mon Sep 17 00:00:00 2001 From: pegasust Date: Tue, 15 Nov 2022 22:44:56 +0000 Subject: [PATCH] chore: format --- system-nix/configuration.nix | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/system-nix/configuration.nix b/system-nix/configuration.nix index 20fcf53..5d82d53 100755 --- a/system-nix/configuration.nix +++ b/system-nix/configuration.nix @@ -11,8 +11,8 @@ with lib; { imports = (if includeHardware then [ ./profiles/${hostname}/hardware-configuration.nix - ] else []) ++ [ - "${modulesPath}/profiles/minimal.nix" + ] else [ ]) ++ [ + "${modulesPath}/profiles/minimal.nix" ]; inherit networking; inherit boot; @@ -28,31 +28,31 @@ with lib; experimental-features = nix-command flakes ''; users.users.hungtr = { - isNormalUser = true; - home = "/home/hungtr"; - description = "pegasust/hungtr"; - extraGroups = [ "wheel" "networkmanager" ]; - openssh.authorizedKeys.keys = lib.strings.splitString "\n" (builtins.readFile ../ssh/authorized_keys); + isNormalUser = true; + home = "/home/hungtr"; + description = "pegasust/hungtr"; + extraGroups = [ "wheel" "networkmanager" ]; + openssh.authorizedKeys.keys = lib.strings.splitString "\n" (builtins.readFile ../ssh/authorized_keys); }; # Some basic programs programs.neovim = { - enable = true; - defaultEditor = true; + enable = true; + defaultEditor = true; }; programs.git = { - enable = true; - # more information should be configured under user level + enable = true; + # more information should be configured under user level }; environment.systemPackages = [ - pkgs.gnumake - pkgs.wget - pkgs.inetutils - pkgs.mtr - pkgs.sysstat - pkgs.mosh + pkgs.gnumake + pkgs.wget + pkgs.inetutils + pkgs.mtr + pkgs.sysstat + pkgs.mosh ]; - } +}