nix-git/modules/base-headless.nix

11 lines
115 B
Nix
Raw Normal View History

2023-09-27 12:06:14 +02:00
{ config, pkgs, ... }:
{
users.users.yoda = {
packages = with pkgs; [
htop
screen
];
};
}