diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-05-05 00:51:08 +0900 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2022-05-05 00:52:35 +0900 |
commit | 255f3f3a8f584ee3bb8fea298aef4313fdbc1a38 (patch) | |
tree | 502cedab075e394b3101de5b62ce246729784ad8 | |
parent | 1399d4a1be1d0c72ef9bc79b32ffc570810273c2 (diff) | |
download | nixos-conf-255f3f3a8f584ee3bb8fea298aef4313fdbc1a38.tar.gz |
Clean up
-rw-r--r-- | configuration.nix | 41 | ||||
-rw-r--r-- | vpsadminos.nix | 6 |
2 files changed, 15 insertions, 32 deletions
diff --git a/configuration.nix b/configuration.nix index 09039d3..e94e52c 100644 --- a/configuration.nix +++ b/configuration.nix @@ -68,35 +68,22 @@ time.timeZone = "UTC"; - users = { - groups.git = {}; - - users = { - ckie = { - isNormalUser = true; - openssh.authorizedKeys.keyFiles = [ "/etc/ssh/ckie.pub" ]; - }; - - cnx = { - extraGroups = [ "wheel" ]; - isNormalUser = true; - openssh.authorizedKeys.keyFiles = [ "/etc/ssh/cnx.pub" ]; - packages = with pkgs; [ stow ]; - }; + users.users = { + ckie = { + isNormalUser = true; + openssh.authorizedKeys.keyFiles = [ "/etc/ssh/ckie.pub" ]; + }; - git = { - createHome = true; - home = "/var/lib/git"; - group = "git"; - isSystemUser = true; - openssh.authorizedKeys.keyFiles = [ "/etc/ssh/cnx.pub" ]; - shell = "${pkgs.git}/bin/git-shell"; - }; + cnx = { + extraGroups = [ "wheel" ]; + isNormalUser = true; + openssh.authorizedKeys.keyFiles = [ "/etc/ssh/cnx.pub" ]; + packages = with pkgs; [ stow ]; + }; - xarvos = { - isNormalUser = true; - openssh.authorizedKeys.keyFiles = [ "/etc/ssh/xarvos.pub" ]; - }; + xarvos = { + isNormalUser = true; + openssh.authorizedKeys.keyFiles = [ "/etc/ssh/xarvos.pub" ]; }; }; } diff --git a/vpsadminos.nix b/vpsadminos.nix index e804746..f03e488 100644 --- a/vpsadminos.nix +++ b/vpsadminos.nix @@ -8,11 +8,7 @@ { config, pkgs, lib, ... }: with lib; -let - nameservers = [ - "9.9.9.9" - "2620:fe::fe" - ]; +let nameservers = [ "9.9.9.9" "2620:fe::fe" ]; in { networking.nameservers = mkDefault nameservers; services.resolved = mkDefault { fallbackDns = nameservers; }; |