2024-04-17 15:43:14 -05:00
|
|
|
# default config loads everything else
|
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
|
|
{
|
2024-04-18 09:40:51 -05:00
|
|
|
home-manager.users.ruben = ./home.nix;
|
2024-04-17 15:43:14 -05:00
|
|
|
|
2024-04-17 20:52:32 -05:00
|
|
|
# myself :D
|
2024-04-17 15:43:14 -05:00
|
|
|
users.users."ruben" = {
|
|
|
|
|
isNormalUser = true;
|
|
|
|
|
description = "Ruben";
|
|
|
|
|
shell = pkgs.zsh;
|
|
|
|
|
extraGroups = [ "wheel" "plugdev" "dialout" "libvirtd" ] ++ (lib.optional config.networking.networkmanager.enable "networkmanager");
|
2024-04-18 09:40:51 -05:00
|
|
|
initialHashedPassword = "changeme";
|
2024-04-17 15:43:14 -05:00
|
|
|
|
2024-04-17 22:06:07 -05:00
|
|
|
openssh.authorizedKeys.keys = [ ''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO+V3b6oKMTLEBq8AKjdNF5ZwJGXuWTrS2u9QaEypBYP sneexy@disroot.org'' ];
|
2024-04-17 15:43:14 -05:00
|
|
|
};
|
|
|
|
|
|
2024-04-17 20:52:32 -05:00
|
|
|
programs.zsh.enable = true;
|
2024-04-17 15:43:14 -05:00
|
|
|
environment.shells = with pkgs; [ zsh ];
|
|
|
|
|
}
|