Initial commit
This commit is contained in:
commit
cfcc57a8bd
353 changed files with 18756 additions and 0 deletions
21
module/aspect/software/software-gui/shotcut.nix
Normal file
21
module/aspect/software/software-gui/shotcut.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
den.aspects = {
|
||||
shotcut = {
|
||||
homeManager =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
home.packages = [
|
||||
(pkgs.symlinkJoin {
|
||||
name = "shotcut";
|
||||
buildInputs = [ pkgs.makeWrapper ];
|
||||
paths = [ pkgs.shotcut ];
|
||||
postBuild = ''
|
||||
wrapProgram $out/bin/shotcut \
|
||||
--unset QT_QPA_PLATFORMTHEME
|
||||
'';
|
||||
})
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue