first commit

This commit is contained in:
Rohan Deshpande
2024-09-08 20:27:05 -04:00
commit b0462a90af
15 changed files with 1445 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
{config, pkgs, ...}: {
programs.alacritty = {
enable = true;
};
}

View File

@@ -0,0 +1,15 @@
{config, pkgs, ...}: {
programs.qutebrowser = {
enable = true;
quickmarks = {
nixpkgs = "https://search.nixos.org/packages";
home-manager = "https://nix-community.github.io/home-manager/options.xhtml";
};
settings = {
colors = {
webpage.preferred_color_scheme = "dark";
};
content.blocking.method = "adblock";
};
};
}

View File

@@ -0,0 +1,5 @@
{config, pkgs, ...}: {
programs.zathura = {
enable = true;
};
}