Kitty -> Alacrity and cursor
This commit is contained in:
parent
49e68108ac
commit
53ffe55623
2 changed files with 26 additions and 6 deletions
30
home.nix
30
home.nix
|
|
@ -6,14 +6,23 @@
|
|||
./emacs/emacs.nix
|
||||
];
|
||||
|
||||
# Cursor
|
||||
home.pointerCursor = {
|
||||
package = pkgs.vanilla-dmz;
|
||||
name = "Vanilla-DMZ";
|
||||
};
|
||||
|
||||
|
||||
home.username = "nat";
|
||||
home.homeDirectory = "/home/nat";
|
||||
home.packages = with pkgs; [
|
||||
julia-mono
|
||||
audacity
|
||||
beluga
|
||||
bitwarden
|
||||
gimp
|
||||
godot
|
||||
hledger
|
||||
inkscape
|
||||
libreoffice
|
||||
lmms
|
||||
|
|
@ -36,12 +45,23 @@
|
|||
};
|
||||
programs.bash.enable = true;
|
||||
programs.obs-studio.enable = true;
|
||||
|
||||
programs.kitty = {
|
||||
|
||||
# Terminal
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
font = {
|
||||
normal= {
|
||||
family = "juliaMono";
|
||||
style = "Regular";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
# Notifications
|
||||
services.mako = {
|
||||
enable = true;
|
||||
font = {
|
||||
name = "juliaMono";
|
||||
};
|
||||
};
|
||||
|
||||
home.sessionVariables = {
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ in {
|
|||
enable = true;
|
||||
config = {
|
||||
modifier = mod;
|
||||
terminal = "kitty";
|
||||
terminal = "alacritty";
|
||||
|
||||
# Waybar
|
||||
bars = [{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue