mirror of
https://github.com/nix-community/home-manager
synced 2024-12-20 16:59:47 +01:00
pywal: fixed i3 config (#3002)
module was never imported and thus useless. This adds a neovim plugin too.
This commit is contained in:
parent
87d30c1648
commit
07dbd4c0dd
2 changed files with 6 additions and 0 deletions
|
@ -165,6 +165,7 @@ let
|
||||||
./programs/vim.nix
|
./programs/vim.nix
|
||||||
./programs/vscode.nix
|
./programs/vscode.nix
|
||||||
./programs/vscode/haskell.nix
|
./programs/vscode/haskell.nix
|
||||||
|
./programs/pywal.nix
|
||||||
./programs/watson.nix
|
./programs/watson.nix
|
||||||
./programs/waybar.nix
|
./programs/waybar.nix
|
||||||
./programs/xmobar.nix
|
./programs/xmobar.nix
|
||||||
|
|
|
@ -25,6 +25,11 @@ in {
|
||||||
programs.rofi.theme."@import" =
|
programs.rofi.theme."@import" =
|
||||||
"${config.xdg.cacheHome}/wal/colors-rofi-dark.rasi";
|
"${config.xdg.cacheHome}/wal/colors-rofi-dark.rasi";
|
||||||
|
|
||||||
|
programs.neovim.plugins = [{
|
||||||
|
plugin = pkgs.vimPlugins.pywal-nvim;
|
||||||
|
type = "lua";
|
||||||
|
}];
|
||||||
|
|
||||||
# wal generates and that's the one we should load from /home/teto/.cache/wal/colors.Xresources ~/.Xresources
|
# wal generates and that's the one we should load from /home/teto/.cache/wal/colors.Xresources ~/.Xresources
|
||||||
xsession.windowManager.i3 = {
|
xsession.windowManager.i3 = {
|
||||||
extraConfig = ''
|
extraConfig = ''
|
||||||
|
|
Loading…
Reference in a new issue