This commit is contained in:
Parker TenBroeck 2026-05-22 22:12:31 -04:00
commit 0a62ab530d
30 changed files with 2420 additions and 0 deletions

29
modules/users/may.nix Normal file
View file

@ -0,0 +1,29 @@
{ pkgs, ... }:
{
users.users.may = {
isNormalUser = true;
description = "may";
extraGroups = [ "networkmanager" "wheel" ];
};
home-manager.users.may = { pkgs, ... }: {
home = {
username = "may";
homeDirectory = "/home/may";
};
home.packages = with pkgs; [
firefox
chromium
vlc
spotify
vscode
jetbrains.idea
obs-studio
gh
jetbrains.rust-rover
wayvnc
];
};
}