From 255f3f3a8f584ee3bb8fea298aef4313fdbc1a38 Mon Sep 17 00:00:00 2001 From: Nguyễn Gia Phong Date: Thu, 5 May 2022 00:51:08 +0900 Subject: Clean up --- configuration.nix | 41 ++++++++++++++--------------------------- 1 file changed, 14 insertions(+), 27 deletions(-) (limited to 'configuration.nix') 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" ]; }; }; } -- cgit 1.4.1