Files
dotfiles/home/natto/programs.nix
2023-01-23 15:42:52 +05:30

30 lines
621 B
Nix

{ pkgs, config, ... }:
{
programs = {
home-manager.enable = true;
firefox = {
enable = true;
profiles.natto = {
name = "natto";
};
};
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)";
};
};
go.enable = true;
password-store.enable = true;
direnv.enable = true;
foot.enable = false;
};
}