mirror of
https://git.gay/sneexy/nixos.git
synced 2026-01-11 13:13:15 -08:00
20 lines
628 B
Nix
20 lines
628 B
Nix
# default config loads everything else
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
home-manager.users.ruben = ./home.nix;
|
|
|
|
# myself :D
|
|
users.users."ruben" = {
|
|
isNormalUser = true;
|
|
description = "Ruben";
|
|
shell = pkgs.zsh;
|
|
extraGroups = [ "wheel" "plugdev" "dialout" "libvirtd" ] ++ (lib.optional config.networking.networkmanager.enable "networkmanager");
|
|
initialHashedPassword = "changeme";
|
|
|
|
openssh.authorizedKeys.keys = [ ''ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO+V3b6oKMTLEBq8AKjdNF5ZwJGXuWTrS2u9QaEypBYP sneexy@disroot.org'' ];
|
|
};
|
|
|
|
programs.zsh.enable = true;
|
|
environment.shells = with pkgs; [ zsh ];
|
|
}
|