Split t490 configuration

This commit is contained in:
Oliver Davies 2025-01-05 13:56:55 +00:00
parent 96bbb1934a
commit 8dd338d8d5
10 changed files with 140 additions and 105 deletions

14
nix/hosts/t490/users.nix Normal file
View file

@ -0,0 +1,14 @@
{ pkgs, username, ... }:
{
users.users.${username} = {
extraGroups = [ "media" ];
packages = with pkgs; [
android-tools
via
];
};
users.groups.media = { };
}