nixos-configuration/machines/office.nix

12 lines
159 B
Nix
Raw Normal View History

2022-02-18 17:12:39 +01:00
inputs:
{ pkgs, ... }: {
programs.dconf.enable = true;
environment.systemPackages = with pkgs; [
barrier
2022-02-18 18:29:01 +01:00
dconf
2022-02-18 17:12:39 +01:00
libreoffice
paprefs
];
}