mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-23 04:35:38 +00:00
13 lines
191 B
Nix
13 lines
191 B
Nix
|
{ config, pkgs, lib, gui, identity, ... }: {
|
||
|
|
||
|
config = lib.mkIf gui.enable {
|
||
|
|
||
|
home-manager.users.${identity.user} = {
|
||
|
|
||
|
home.packages = with pkgs; [ qbittorrent ];
|
||
|
|
||
|
};
|
||
|
};
|
||
|
|
||
|
}
|