1
Fork 0

feat: attempt at setting up vieb

This commit is contained in:
Matei Adriel 2022-05-11 21:29:47 +03:00
parent 4635e538dd
commit c879c78d56
8 changed files with 66 additions and 2 deletions
modules

View file

@ -0,0 +1,11 @@
{ pkgs, lib, ... }:
let
theme = pkgs.myThemes.current;
extensions = theme.chromium.extensions or [ ];
in
{
home-manager.users.adrielus.programs.chromium = {
enable = true;
extensions = lib.lists.map (id: { inherit id; }) extensions;
};
}

View file

@ -20,6 +20,8 @@
./tmux.nix
./kmonad.nix
./direnv.nix
./chromium.nix
./vieb.nix
];
}

View file

@ -0,0 +1,10 @@
{ pkgs, paths, ... }:
let vieb = "/home/adrielus/.config/Vieb"; in
{
home-manager.users.adrielus = {
home.packages = [ pkgs.vieb ];
systemd.user.tmpfiles.rules = [
"L+ /home/adrielus/.viebrc - - - - ${paths.dotfiles}/vieb/.viebrc"
];
};
}

View file

@ -1,8 +1,8 @@
{ transparency ? 1, wallpaper }: { pkgs, ... }:
{ transparency ? 1, wallpaper, variant }: { pkgs, ... }:
let
githubTheme = pkgs.myVimPlugins.githubNvimTheme; # github theme for neovim
variant = "dark";
foreign = pkgs.callPackage (import ./foreign.nix) { };
v = (a: b: if variant == "light" then a else b);
in
{
wallpaper = wallpaper.foreign or "${foreign.wallpapers}/${wallpaper}";
@ -33,6 +33,12 @@ in
@import "${foreign.rofi}/.config/rofi/config.rasi"
@import "${./rofi.rasi}"'';
};
chromium.extensions = [
# https://github.com/catppuccin/chrome
(v
"cmpdlhmnmjhihmcfnigoememnffkimlk"
"bkkmolkhemgaeaeggcmfbghljjjoofoh")
];
alacritty.settings = {
import = [ "${foreign.alacritty}/catppuccin.yml" ];
window = {

View file

@ -13,6 +13,7 @@ lib.lists.map (theme: pkgs.callPackage theme { }) [
wallpaper = "misc/rainbow.png";
# wallpaper.foreign = ./wallpapers/eye.png;
transparency = 0.93;
variant = "light";
})
(githubVariant {
variant = "light";