Compare commits
5 Commits
a8468bf13f
...
feature/ad
| Author | SHA1 | Date | |
|---|---|---|---|
|
53bf108799
|
|||
| 853cfba840 | |||
|
e0626a3644
|
|||
|
b7ee91cf1a
|
|||
|
4f7ea84a8b
|
11
modules/home-manager/fonts.nix
Normal file
11
modules/home-manager/fonts.nix
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
{ config, pkgs, inputs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
# user fonts
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
nerd-fonts._0xproto
|
||||||
|
nerd-fonts.sauce-code-pro
|
||||||
|
powerline-fonts
|
||||||
|
powerline-symbols
|
||||||
|
];
|
||||||
|
}
|
||||||
20
modules/home-manager/ghostty.nix
Normal file
20
modules/home-manager/ghostty.nix
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
{ config, pkgs, inputs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.ghostty = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
clipboard-paste-protection = false;
|
||||||
|
clipboard-read = "allow";
|
||||||
|
font-family = "0xProto Nerd Font Mono";
|
||||||
|
font-size = 9;
|
||||||
|
gtk-titlebar = false;
|
||||||
|
scrollback-limit = 10000;
|
||||||
|
shell-integration = "zsh";
|
||||||
|
theme = "noctalia"; # generated by noctalia-shell
|
||||||
|
window-decoration = "auto";
|
||||||
|
window-padding-x = 10;
|
||||||
|
window-padding-y = 10;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -6,9 +6,6 @@
|
|||||||
discord
|
discord
|
||||||
fastfetch
|
fastfetch
|
||||||
keepassxc
|
keepassxc
|
||||||
nerd-fonts.sauce-code-pro
|
|
||||||
powerline-fonts
|
|
||||||
powerline-symbols
|
|
||||||
screenfetch
|
screenfetch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
../../modules/home-manager/fonts.nix
|
||||||
../../modules/home-manager/git.nix
|
../../modules/home-manager/git.nix
|
||||||
|
../../modules/home-manager/ghostty.nix
|
||||||
../../modules/home-manager/nixvim.nix
|
../../modules/home-manager/nixvim.nix
|
||||||
../../modules/home-manager/programs.nix
|
../../modules/home-manager/programs.nix
|
||||||
../../modules/home-manager/shell.nix
|
../../modules/home-manager/shell.nix
|
||||||
|
|||||||
Reference in New Issue
Block a user