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
|
./emacs/emacs.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Cursor
|
||||||
|
home.pointerCursor = {
|
||||||
|
package = pkgs.vanilla-dmz;
|
||||||
|
name = "Vanilla-DMZ";
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
home.username = "nat";
|
home.username = "nat";
|
||||||
home.homeDirectory = "/home/nat";
|
home.homeDirectory = "/home/nat";
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
julia-mono
|
julia-mono
|
||||||
|
audacity
|
||||||
beluga
|
beluga
|
||||||
bitwarden
|
bitwarden
|
||||||
gimp
|
gimp
|
||||||
godot
|
godot
|
||||||
|
hledger
|
||||||
inkscape
|
inkscape
|
||||||
libreoffice
|
libreoffice
|
||||||
lmms
|
lmms
|
||||||
|
|
@ -36,12 +45,23 @@
|
||||||
};
|
};
|
||||||
programs.bash.enable = true;
|
programs.bash.enable = true;
|
||||||
programs.obs-studio.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;
|
enable = true;
|
||||||
font = {
|
|
||||||
name = "juliaMono";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
|
|
|
||||||
|
|
@ -9,7 +9,7 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = {
|
config = {
|
||||||
modifier = mod;
|
modifier = mod;
|
||||||
terminal = "kitty";
|
terminal = "alacritty";
|
||||||
|
|
||||||
# Waybar
|
# Waybar
|
||||||
bars = [{
|
bars = [{
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue