mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-29 15:50:43 +00:00
Add qalculate-gtk
This commit is contained in:
parent
15ce6ea7d0
commit
75ed5ed91c
5 changed files with 20 additions and 1 deletions
|
@ -9,5 +9,6 @@ _: {
|
|||
./qimgv.nix
|
||||
./stremio.nix
|
||||
./qbittorrent.nix
|
||||
./qalculate-gtk.nix
|
||||
];
|
||||
}
|
||||
|
|
14
home/programs/graphical/apps/qalculate-gtk.nix
Normal file
14
home/programs/graphical/apps/qalculate-gtk.nix
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
osConfig,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf;
|
||||
|
||||
cfg = osConfig.myOptions.home-manager.programs.applications.qalculate-gtk;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = with pkgs; [ qalculate-gtk ];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue