1
Fork 0

feat: more work on the catppuccin installation

This commit is contained in:
Matei Adriel 2022-05-10 19:00:16 +03:00
parent 505fdbc65a
commit 14555c38b6
16 changed files with 189 additions and 15 deletions
modules/applications

View file

@ -16,6 +16,8 @@ in
settings = {
window.decorations = "none";
fonts.normal.family = "Nerd Font Source Code Pro";
env = { TERM = "xterm-256color"; };
};
};
}

View file

@ -1,4 +1,8 @@
{ ... }: {
{ pkgs, ... }:
let
theme = pkgs.myThemes.current;
in
{
home-manager.users.adrielus.programs.rofi = {
enable = true;
font = "Source Code Pro 16";
@ -7,6 +11,7 @@
# lines = 7;
# fullscreen = false;
cycle = true;
theme = "purple";
theme = theme.rofi.theme;
extraConfig = theme.rofi.config;
};
}