Skip to content

Commit

Permalink
chore: Update lockfile and apply Package Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
coredev-uk committed Dec 24, 2024
1 parent 1da26d1 commit 6078bf6
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 21 deletions.
18 changes: 9 additions & 9 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion home/common/desktop/alacritty.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ let
theme = import "${self}/lib/theme" { inherit pkgs; };
in
{
catppuccin.alacritty.enable = true;

programs.alacritty = {
enable = true;
catppuccin.enable = true;
settings = {
env = {
TERM = "alacritty";
Expand Down
4 changes: 2 additions & 2 deletions home/common/desktop/dunst.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ let
theme = import "${self}/lib/theme" { inherit pkgs; };
in
{
catppuccin.dunst.enable = true;

services.dunst = {
enable = true;

catppuccin.enable = true;

iconTheme = {
package = pkgs.papirus-icon-theme;
name = "Papirus";
Expand Down
3 changes: 2 additions & 1 deletion home/common/desktop/polybar.nix
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,10 @@ let
'';
in
{
catppuccin.polybar.enable = true;

services.polybar = {
enable = true;
catppuccin.enable = true;

script = ''
for m in $(polybar --list-monitors | ${pkgs.coreutils}/bin/cut -d":" -f1); do
Expand Down
6 changes: 2 additions & 4 deletions home/common/desktop/rofi.nix
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
{ pkgs, desktop, ... }:

{
catppuccin.rofi.enable = true;

programs.rofi = {
enable = true;
package = if desktop == "i3" then pkgs.rofi else pkgs.rofi-wayland;
catppuccin = {
enable = true;
flavor = "mocha";
};
terminal = "${pkgs.alacritty}/bin/alacritty";

extraConfig = {
Expand Down
3 changes: 2 additions & 1 deletion home/common/shell/bat.nix
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
_: {
catppuccin.bat.enable = true;

programs = {
bat = {
enable = true;
catppuccin.enable = true;
};
};
}
3 changes: 2 additions & 1 deletion home/common/shell/bottom.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
_: {
catppuccin.bottom.enable = true;

programs.bottom = {
enable = true;
catppuccin.enable = true;
};
}
3 changes: 2 additions & 1 deletion home/common/shell/vim.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{ pkgs, ... }:
{
catppuccin.nvim.enable = true;

programs.neovim = {
enable = true;
package = pkgs.neovim-unwrapped;
catppuccin.enable = true;
viAlias = true;
vimAlias = true;
vimdiffAlias = true;
Expand Down
3 changes: 2 additions & 1 deletion home/common/shell/zsh.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
starship
];

catppuccin.zsh-syntax-highlighting.enable = true;

programs = {
zsh = {
enable = true;
Expand All @@ -16,7 +18,6 @@
autosuggestion.enable = true;
syntaxHighlighting = {
enable = true;
catppuccin.enable = true;
};

history = {
Expand Down

0 comments on commit 6078bf6

Please sign in to comment.