chores: configs cleanup

This commit is contained in:
Kulvir Singh
2025-01-11 20:54:23 +05:30
parent d54160c4db
commit 424dadd45f
6 changed files with 18 additions and 50 deletions

View File

@@ -33,7 +33,6 @@
FXPreferredViewStyle = "Nlsv";
NewWindowTarget = "Other";
NewWindowTargetPath = "file:///Users/lilj/Downloads";
QuitMenuItem = true;
ShowPathbar = true;
ShowStatusBar = true;
ShowRemovableMediaOnDesktop = false;

View File

@@ -8,6 +8,7 @@
imports = [
# ../../modules/alacritty.nix
../../modules/git.nix
../../modules/fastfetch.nix
../../modules/kitty.nix
../../modules/nvim.nix
../../modules/shell.nix

View File

@@ -18,7 +18,7 @@
pkgs.nerd-fonts.jetbrains-mono
# Alternate Fonts
# pkgs.nerd-fonts.caskaydia-mono
pkgs.nerd-fonts.iosevka
# pkgs.nerd-fonts.iosevka
];
homebrew = {
@@ -30,7 +30,6 @@
caskArgs = {
appdir = "/Applications";
# require_sha = true;
};
# darwin support for packages sucks

View File

@@ -19,12 +19,11 @@
nix.gc = {
user = "root";
automatic = lib.mkDefault true;
options = lib.mkDefault "--delete-older-than 4d";
options = lib.mkDefault "--delete-older-than 5d";
};
# Disable auto-optimise-store because of this issue:
# https://github.com/NixOS/nix/issues/7273
# nix.settings = {
# auto-optimise-store = false;
# };
nix.settings = {
auto-optimise-store = false;
};
}