mirror of
https://github.com/librephoenix/nixos-config
synced 2025-10-18 17:44:06 +05:30
fixed qute-containers
This commit is contained in:
parent
16f689ff07
commit
9a50ad5a3f
1 changed files with 5 additions and 5 deletions
|
@ -108,7 +108,7 @@ let
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
'';
|
'';
|
||||||
qute-containers = (pkgs.callPackage ({ lib, stdenv, fetchFromGitHub, dmenuCmd ? config.userSettings.dmenuScripts.dmenuCmd, ... }:
|
qute-containers = ({ lib, stdenv, fetchFromGitHub, dmenuCmd ? config.userSettings.dmenuScripts.dmenuCmd, ... }:
|
||||||
let name = "qute-containers";
|
let name = "qute-containers";
|
||||||
version = "unstable";
|
version = "unstable";
|
||||||
dmenu = dmenuCmd;
|
dmenu = dmenuCmd;
|
||||||
|
@ -140,7 +140,7 @@ let
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
maintainers = [];
|
maintainers = [];
|
||||||
};
|
};
|
||||||
}));
|
});
|
||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
userSettings.qutebrowser = {
|
userSettings.qutebrowser = {
|
||||||
|
@ -150,11 +150,11 @@ in {
|
||||||
|
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf cfg.enable {
|
||||||
home.packages = [ pkgs.qutebrowser
|
home.packages = [ pkgs.qutebrowser
|
||||||
#qute-containers # TODO disabled for debugging
|
(pkgs.callPackage qute-containers {}) # TODO disabled for debugging
|
||||||
];
|
];
|
||||||
|
|
||||||
# home.file.".config/qutebrowser/userscripts/container-open".source = "${qute-containers}/bin/container-open";
|
home.file.".config/qutebrowser/userscripts/container-open".source = "${(pkgs.callPackage qute-containers {})}/bin/container-open";
|
||||||
# home.file.".config/qutebrowser/userscripts/containers_config".source = "${qute-containers}/bin/containers_config";
|
home.file.".config/qutebrowser/userscripts/containers_config".source = "${(pkgs.callPackage qute-containers {})}/bin/containers_config";
|
||||||
|
|
||||||
programs.qutebrowser.enable = true;
|
programs.qutebrowser.enable = true;
|
||||||
programs.qutebrowser.extraConfig = ''
|
programs.qutebrowser.extraConfig = ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue