Files
dotfiles/home/natto/programs.nix
Amneesh Singh 7ed47be803 lib: init
also added globalArgs

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
2023-01-23 20:41:42 +05:30

32 lines
638 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;
};
};
}