feat: explicitly add alacritty

This commit is contained in:
EinEtwas 2024-10-16 14:13:52 +02:00
parent 49a898b587
commit a9ee5dfb51
2 changed files with 18 additions and 9 deletions

6
home/alacritty.nix Normal file
View file

@ -0,0 +1,6 @@
{
programs.alacritty = {
enable = true;
# catppuccin.enable = true;
};
}

View file

@ -1,8 +1,8 @@
{ config, pkgs, inputs, ... }:
{
imports = [
# <home-manager/nixos>
inputs.home-manager.nixosModules.home-manager
# inputs.catppuccin.nixosModules.catppuccin
];
home-manager = {
@ -17,14 +17,6 @@
home.homeDirectory = "/home/rhea";
programs.home-manager.enable = true;
home.pointerCursor = {
gtk.enable = true;
package = pkgs.posy-cursors;
name = "Posy_Cursor";
size = 16;
};
imports = [
./hyprland.nix
./git.nix
@ -35,7 +27,18 @@
./swaylock.nix
./easyeffects.nix
./packages.nix
./alacritty.nix
# inputs.catppuccin.nixosModules.catppuccin
];
# catppuccin.accent = "mocha";
home.pointerCursor = {
gtk.enable = true;
package = pkgs.posy-cursors;
name = "Posy_Cursor";
size = 16;
};
};
};