dam hardware configuration is hard

This commit is contained in:
marty 2025-12-16 17:55:19 +01:00
parent 5b70d63280
commit d4c499fce1
5 changed files with 38 additions and 38 deletions

21
user/marty.nix Normal file
View file

@ -0,0 +1,21 @@
{ config, pkgs, ... }:
{
users.users.marty = {
isNormalUser = true;
description = "marty";
extraGroups = [
"networkmanager"
"wheel"
"video"
"audio"
"render"
];
shell = pkgs.fish;
};
security.sudo = {
enable = true;
wheelNeedsPassword = true;
};
}