Let's try theming helix

This commit is contained in:
Lillian Violet 2024-04-27 14:40:15 +02:00
parent 245358b965
commit 67afd17e6e
6 changed files with 17 additions and 0 deletions

View file

@ -18,6 +18,7 @@
# ./nvim.nix
../package-configs/zsh.nix
../package-configs/firefox.nix
../package-configs/helix.nix
./plasma-desktop
];
nixpkgs = {

View file

@ -19,6 +19,7 @@
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
../../desktop
../../package-configs/helix.nix
];
home.packages = with pkgs; [

View file

@ -19,6 +19,7 @@
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
../../package-configs/zsh.nix
../../package-configs/helix.nix
];
nixpkgs = {

View file

@ -21,6 +21,7 @@
../../package-configs/zsh.nix
../../package-configs/firefox.nix
../../desktop/plasma-desktop
../../package-configs/helix.nix
];
nixpkgs = {
# You can add overlays here

View file

@ -19,6 +19,7 @@
# You can also split up your configuration and import pieces of it here:
# ./nvim.nix
../../package-configs/zsh.nix
../../package-configs/helix.nix
];
nixpkgs = {

View file

@ -0,0 +1,12 @@
{
inputs,
outputs,
lib,
config,
pkgs,
...
}: {
programs.helix = {
catppuccin.enable = true;
};
}