From 7a60cdd513f9789a5ec21239153396fdfc0325f3 Mon Sep 17 00:00:00 2001 From: pagedmov Date: Sun, 17 Nov 2024 21:42:06 -0500 Subject: [PATCH] misc optimizations --- hosts/desktop/config.nix | 13 ------------- hosts/desktop/home.nix | 9 ++++----- 2 files changed, 4 insertions(+), 18 deletions(-) diff --git a/hosts/desktop/config.nix b/hosts/desktop/config.nix index f5b6cbf..c7e7c62 100755 --- a/hosts/desktop/config.nix +++ b/hosts/desktop/config.nix @@ -23,19 +23,6 @@ }; }; - nix = { - settings = { - auto-optimise-store = true; - experimental-features = [ "nix-command" "flakes" ]; - substituters = [ "https://nix-gaming.cachix.org" ]; - }; - gc = { - automatic = true; - dates = "weekly"; - options = "--delete-older-than 7d"; - }; - }; - environment = { variables = { PATH = "${pkgs.clang-tools}/bin:$PATH"; }; shells = with pkgs; [ zsh bash ]; diff --git a/hosts/desktop/home.nix b/hosts/desktop/home.nix index 9e17b19..dc74aea 100755 --- a/hosts/desktop/home.nix +++ b/hosts/desktop/home.nix @@ -1,9 +1,8 @@ { username, ... }: { - home.username = "${username}"; # Replace with your actual username + home.username = "${username}"; home.homeDirectory = - "/home/${username}"; # Replace with your actual home directory - home.stateVersion = - "24.05"; # Adjust this based on your system's NixOS version + "/home/${username}"; + home.stateVersion = "25.05"; programs.home-manager.enable = true; @@ -37,7 +36,7 @@ programConfigs = { autojumpConfig.enable = true; btopConfig.enable = true; - cavaConfig.enable = true; + cavaConfig.enable = false; ezaConfig.enable = true; firefoxConfig.enable = true; fuzzelConfig.enable = true;