kde/programs/konsole: add catppuccin colorscheme
This commit is contained in:
parent
b56b90651a
commit
437d3022eb
2 changed files with 18 additions and 0 deletions
|
|
@ -6,6 +6,7 @@
|
||||||
./firefox.nix
|
./firefox.nix
|
||||||
./skanpage.nix
|
./skanpage.nix
|
||||||
./neochat.nix
|
./neochat.nix
|
||||||
|
./konsole.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Enable the kde partition manager
|
# Enable the kde partition manager
|
||||||
|
|
|
||||||
17
roles/kde/programs/konsole.nix
Normal file
17
roles/kde/programs/konsole.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
|
catppuccinKonsole = pkgs.fetchFromGitHub {
|
||||||
|
owner = "catppuccin";
|
||||||
|
repo = "konsole";
|
||||||
|
# Latest commit is 7d86b8a1e56e58f6b5649cdaac543a573ac194ca
|
||||||
|
rev = "main";
|
||||||
|
hash = "sha256-EwSJMTxnaj2UlNJm1t6znnatfzgm1awIQQUF3VPfCTM=";
|
||||||
|
} + /Catppuccin-Mocha.colorscheme;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
home-manager.users.toast = {
|
||||||
|
xdg.dataFile = {
|
||||||
|
"konsole/Catppuccin-Mocha.colorscheme".source = catppuccinKonsole;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue