diff --git a/dot_config/flake/machines/saffron/configuration.nix b/dot_config/flake/machines/saffron/configuration.nix index 78953ca..562186e 100644 --- a/dot_config/flake/machines/saffron/configuration.nix +++ b/dot_config/flake/machines/saffron/configuration.nix @@ -1,4 +1,4 @@ -{outputs, ...}: { +{pkgs, outputs, ...}: { imports = [ # Include the results of the hardware scan. ./hardware-configuration.nix @@ -63,14 +63,12 @@ # Enable touchpad support (enabled default in most desktopManager). # services.libinput.enable = true; - # Define a user account. Don't forget to set a password with ‘passwd’. - # users.users.alice = { - # isNormalUser = true; - # extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. - # packages = with pkgs; [ - # tree - # ]; - # }; + users.users.tyler = { + isNormalUser = true; + description = "tyler"; + extraGroups = ["wheel"]; + shell = pkgs.fish; + }; # programs.firefox.enable = true;