Let's try theming helix
This commit is contained in:
parent
245358b965
commit
67afd17e6e
|
@ -18,6 +18,7 @@
|
||||||
# ./nvim.nix
|
# ./nvim.nix
|
||||||
../package-configs/zsh.nix
|
../package-configs/zsh.nix
|
||||||
../package-configs/firefox.nix
|
../package-configs/firefox.nix
|
||||||
|
../package-configs/helix.nix
|
||||||
./plasma-desktop
|
./plasma-desktop
|
||||||
];
|
];
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
# You can also split up your configuration and import pieces of it here:
|
# You can also split up your configuration and import pieces of it here:
|
||||||
# ./nvim.nix
|
# ./nvim.nix
|
||||||
../../desktop
|
../../desktop
|
||||||
|
../../package-configs/helix.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
# You can also split up your configuration and import pieces of it here:
|
# You can also split up your configuration and import pieces of it here:
|
||||||
# ./nvim.nix
|
# ./nvim.nix
|
||||||
../../package-configs/zsh.nix
|
../../package-configs/zsh.nix
|
||||||
|
../../package-configs/helix.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
../../package-configs/zsh.nix
|
../../package-configs/zsh.nix
|
||||||
../../package-configs/firefox.nix
|
../../package-configs/firefox.nix
|
||||||
../../desktop/plasma-desktop
|
../../desktop/plasma-desktop
|
||||||
|
../../package-configs/helix.nix
|
||||||
];
|
];
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
# You can add overlays here
|
# You can add overlays here
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
# You can also split up your configuration and import pieces of it here:
|
# You can also split up your configuration and import pieces of it here:
|
||||||
# ./nvim.nix
|
# ./nvim.nix
|
||||||
../../package-configs/zsh.nix
|
../../package-configs/zsh.nix
|
||||||
|
../../package-configs/helix.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
|
|
12
home-manager/package-configs/helix.nix
Normal file
12
home-manager/package-configs/helix.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
outputs,
|
||||||
|
lib,
|
||||||
|
config,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
programs.helix = {
|
||||||
|
catppuccin.enable = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue