libkookie: workstation: add various graphical tools

wip/yesman
Katharina Fey 3 years ago
parent 8a4ed2268f
commit ec73a5b5ea
  1. 12
      infra/libkookie/configuration/workstation/chat/default.nix
  2. 18
      infra/libkookie/configuration/workstation/creative/default.nix
  3. 10
      infra/libkookie/configuration/workstation/pass/default.nix

@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs;
[
dino
quasselClient
element-desktop
signal-desktop
tdesktop
];
}

@ -0,0 +1,18 @@
/**
* A set of tools to do creative production
*
* This may be extended at some point to offer better configuration in
* the future.
*/
{ pkgs, ... }:
{
home.packages = with pkgs;
[
ardour audacity lmms
kdenlive
gimp inkscape krita
];
}

@ -0,0 +1,10 @@
{ pkgs, ... }:
# TODO: make this install the wine program somehow?
{
home.packages = with pkgs; [
(writeShellScriptBin "onepass" ''
${wine}/bin/wine "/home/.wine/drive_c/Program Files/1Password 4/1Password.exe"
'')
];
}
Loading…
Cancel
Save