ctucx.git: nixfiles

ctucx' nixfiles

1 
2 
3 
4 
5 
6 
7 
8 
9 
10 
11 
12 
13 
14 
15 
16 
17 
18 
19 
20 
21 
{ pkgs, ... }:

{

  home.packages = [ pkgs.libreoffice-fresh ];

  xdg.desktopEntries = {
    impress.name = "LibreOffice Impress";
    impress.settings.NoDisplay = "true";

    math.name = "LibreOffice Math";
    math.settings.NoDisplay = "true";

    base.name = "LibreOffice Base";
    base.settings.NoDisplay = "true";

    draw.name = "LibreOffice Draw";
    draw.settings.NoDisplay = "true";
  };

}