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 --- users/seth/default.nix | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 users/seth/default.nix (limited to 'users/seth/default.nix') diff --git a/users/seth/default.nix b/users/seth/default.nix new file mode 100644 index 0000000..ef6cba4 --- /dev/null +++ b/users/seth/default.nix @@ -0,0 +1,22 @@ +{ config, pkgs, modulesPath, ...}: + +{ + imports = [ + "${modulesPath}/profiles/minimal.nix" + ]; + + users.users.seth = { + extraGroups = [ "wheel" ]; + isNormalUser = true; + hashedPassword = "***REMOVED***"; + shell = pkgs.bash; + }; + + home-manager.users.seth = { + imports = [ + ./config.nix + ]; + + home.stateVersion = config.system.stateVersion; + }; +} -- cgit v1.2.3