mirror of
https://github.com/ParkerTenBroeck/dotfiles.git
synced 2026-06-06 21:00:35 -04:00
29 lines
468 B
Nix
29 lines
468 B
Nix
{ 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
|
|
];
|
|
};
|
|
}
|