feat: explicitly add alacritty
This commit is contained in:
parent
49a898b587
commit
a9ee5dfb51
2 changed files with 18 additions and 9 deletions
6
home/alacritty.nix
Normal file
6
home/alacritty.nix
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
{
|
||||||
|
programs.alacritty = {
|
||||||
|
enable = true;
|
||||||
|
# catppuccin.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
{ config, pkgs, inputs, ... }:
|
{ config, pkgs, inputs, ... }:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
# <home-manager/nixos>
|
|
||||||
inputs.home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
|
# inputs.catppuccin.nixosModules.catppuccin
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager = {
|
home-manager = {
|
||||||
|
|
@ -17,14 +17,6 @@
|
||||||
home.homeDirectory = "/home/rhea";
|
home.homeDirectory = "/home/rhea";
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
home.pointerCursor = {
|
|
||||||
gtk.enable = true;
|
|
||||||
package = pkgs.posy-cursors;
|
|
||||||
name = "Posy_Cursor";
|
|
||||||
size = 16;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./hyprland.nix
|
./hyprland.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
|
|
@ -35,7 +27,18 @@
|
||||||
./swaylock.nix
|
./swaylock.nix
|
||||||
./easyeffects.nix
|
./easyeffects.nix
|
||||||
./packages.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;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue