aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2024-12-01 09:57:07 -0800
committerFranck Cuny <franck@fcuny.net>2024-12-01 09:57:07 -0800
commitd98cef14e0627f25eb464eb9247cb064eaa519a8 (patch)
tree4da70f7c51031cacaf62ab181061a51fadf048ae
parentflake.lock: Update (diff)
downloadinfra-d98cef14e0627f25eb464eb9247cb064eaa519a8.tar.gz
remove unused fonts
-rw-r--r--nix/hosts/darwin/macos.nix1
-rw-r--r--nix/profiles/home-manager/fish.nix18
-rw-r--r--nix/profiles/home-manager/mac.nix2
3 files changed, 1 insertions, 20 deletions
diff --git a/nix/hosts/darwin/macos.nix b/nix/hosts/darwin/macos.nix
index c901783..36f680a 100644
--- a/nix/hosts/darwin/macos.nix
+++ b/nix/hosts/darwin/macos.nix
@@ -17,7 +17,6 @@
source-serif-pro
source-sans-pro
go-font
- nerdfonts # this is needed for eza
];
system.keyboard = {
diff --git a/nix/profiles/home-manager/fish.nix b/nix/profiles/home-manager/fish.nix
deleted file mode 100644
index dee7e11..0000000
--- a/nix/profiles/home-manager/fish.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{ ... }: {
- programs.fish = {
- enable = true;
- interactiveShellInit = ''
- set fish_greeting ""
- '';
-
- shellAliases = {
- l =
- "eza --tree --level=2 --time-style=long-iso --group-directories-first --icons";
- ll = "l -l";
- lh = "ll";
- la = "ll -a";
- ld = "eza -ld";
- };
- shellAbbrs = { ncg = "nix-collect-garbage -d"; };
- };
-}
diff --git a/nix/profiles/home-manager/mac.nix b/nix/profiles/home-manager/mac.nix
index 48fc956..045441a 100644
--- a/nix/profiles/home-manager/mac.nix
+++ b/nix/profiles/home-manager/mac.nix
@@ -1,4 +1,4 @@
{ ... }: {
- imports = [ ./dev.nix ./fish.nix ./git.nix ./shell.nix ./ssh.nix ];
+ imports = [ ./dev.nix ./git.nix ./shell.nix ./ssh.nix ];
xdg.enable = false;
}