diff --git a/hosts/configuration.nix b/hosts/configuration.nix index e24b3a8..3a037c8 100644 --- a/hosts/configuration.nix +++ b/hosts/configuration.nix @@ -18,7 +18,6 @@ dates = "weekly"; options = "--delete-older-than 30d"; }; - boot.loader.systemd-boot.configurationLimit = 5; # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It's perfectly fine and recommended to leave diff --git a/modules/default.nix b/modules/default.nix index 7736937..2aec22a 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -32,9 +32,6 @@ }; environment.systemPackages = with pkgs; [ - wget - curl - git home-manager ]; } diff --git a/modules/env.nix b/modules/env.nix index 95d7b8e..5f523b2 100644 --- a/modules/env.nix +++ b/modules/env.nix @@ -31,31 +31,6 @@ "/bin" ]; - environment.systemPackages = with pkgs; [ - neovim - tmux - htop - btop - bat - ripgrep - fd - yt-dlp - eza - jq - fzf - starship - yazi - fastfetch - # Core utilities - wget - libnotify - curl - git - file - which - psmisc - ]; - # Enable direnv with nix integration programs.direnv = { enable = true; diff --git a/modules/nixos.nix b/modules/nixos.nix index a1c7d2b..ac78166 100644 --- a/modules/nixos.nix +++ b/modules/nixos.nix @@ -17,10 +17,8 @@ }) ]; - # Enable nix-index for command-not-found programs.nix-index.enable = true; programs.command-not-found.enable = false; - # Setup nix settings nix.settings = { auto-optimise-store = true; experimental-features = [ "nix-command" "flakes" ];