This commit is contained in:
4DBug
2026-02-18 22:44:39 -06:00
parent bca6b60a3e
commit e5f9674f8d
82 changed files with 9362 additions and 0 deletions

15
modules/hosts.nix Normal file
View File

@@ -0,0 +1,15 @@
let
bug = {
isNormalUser = true;
description = "bug";
extraGroups = [ "networkmanager" "wheel" "audio" "video" "libvirtd" "ydotool" "dialout" ];
};
in {
den.hosts.x86_64-linux = {
nix.users.bug = bug;
laptop.users.bug = bug;
box.users.bug = bug;
};
den.homes.x86_64-linux.bug = { aspect = "bug"; };
}