Add t480 configuration

This commit is contained in:
Oliver Davies 2025-03-21 15:01:39 +00:00
parent c347c217a4
commit 148d6ca78c
17 changed files with 346 additions and 0 deletions

15
nix/hosts/t480/users.nix Normal file
View file

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