forked from pub-solar/os
4cf8048807
Overlays now live globally in the overlays directory. They will be pulled into the flake and the rest of your configuration automatically from there.
20 lines
450 B
Nix
20 lines
450 B
Nix
{ pkgs, ... }:
|
|
let inherit (builtins) readFile;
|
|
in {
|
|
sound.enable = true;
|
|
|
|
environment = {
|
|
etc."xdg/qutebrowser/config.py".text = let mpv = "${pkgs.mpv}/bin/mpv";
|
|
in ''
|
|
${readFile ./config.py}
|
|
|
|
config.bind(',m', 'hint links spawn -d ${mpv} {hint-url}')
|
|
config.bind(',v', 'spawn -d ${mpv} {url}')
|
|
'';
|
|
|
|
sessionVariables.BROWSER = "qute";
|
|
|
|
systemPackages = with pkgs; [ qute qutebrowser mpv youtubeDL ];
|
|
};
|
|
}
|