From b673b76f41a1f48c38acb9b67657e097e5b8a61f Mon Sep 17 00:00:00 2001 From: seth Date: Fri, 2 Dec 2022 02:12:40 -0500 Subject: now *most* things work :p --- hosts/glados/users.nix | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 hosts/glados/users.nix (limited to 'hosts/glados/users.nix') diff --git a/hosts/glados/users.nix b/hosts/glados/users.nix deleted file mode 100644 index e0b04c5..0000000 --- a/hosts/glados/users.nix +++ /dev/null @@ -1,27 +0,0 @@ -{ config, lib, pkgs, ... }: - -with config; with lib; with pkgs; -{ - users = { - defaultUserShell = bash; - mutableUsers = false; - - users = { - - root = { - home = "/root"; - uid = ids.uids.root; - group = "root"; - initialHashedPassword = mkDefault "!"; - }; - - seth = { - extraGroups = [ "wheel" ]; - isNormalUser = true; - hashedPassword = "idontknowhowtosecurethis"; - shell = fish; - }; - - }; - }; -} -- cgit v1.2.3