9 lines
115 B
Nix
Executable File
9 lines
115 B
Nix
Executable File
{ config, pkgs, lib, user, ... }:
|
|
lib.mkIf (user != "tv")
|
|
{
|
|
home.packages = with pkgs; [
|
|
libreoffice
|
|
];
|
|
}
|
|
|