Files
dotfiles/home/stuff/programs.nix
natto1784 d49f0b473c misc changes
xmonad: added new layout+keybinds, removed useless code
neovim: minor changes
hosts/satori: changed kernel to zen again
home/services and home/programs: minor changes
overlays: changed picom src and other minor changes
2021-09-12 06:24:49 +05:30

41 lines
926 B
Nix

{ pkgs, config, ...}:
{
imports = [
./programs/ncmpcpp.nix
./programs/emacs.nix
];
programs = {
firefox = {
enable = true;
package = pkgs.firefox-bin;
profiles.natto = {
name = "natto";
# userChrome = builtins.readFile ../config/firefox/userChrome.css;
# userContent = builtins.readFile ../config/firefox/userContent.css;
};
};
/* chromium = {
enable = true;
package = pkgs.ungoogled-chromium;
};*/
zathura = {
enable = true;
extraConfig = builtins.readFile ../config/zathura/zathurarc;
options = {
recolor = true;
recolor-lightcolor = "rgba(0,0,0,0)";
default-bg = "rgba(0,0,0,0.8)";
};
};
mpv = {
enable = true;
config = {
force-window = "yes";
keep-open = "yes";
save-position-on-quit = "yes";
};
};
go.enable = true;
};
}