From ae3e294a817e5559b02d9be395a2405e630b7ecd Mon Sep 17 00:00:00 2001 From: TheWanderingCrow Date: Fri, 5 Dec 2025 09:16:42 -0500 Subject: [PATCH] I use it so much; add fastfetch --- hosts/common/core/default.nix | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/hosts/common/core/default.nix b/hosts/common/core/default.nix index d42b049..68d2442 100644 --- a/hosts/common/core/default.nix +++ b/hosts/common/core/default.nix @@ -6,13 +6,12 @@ pkgs, isDarwin, ... -}: let - platform = - if isDarwin - then "darwin" - else "nixos"; +}: +let + platform = if isDarwin then "darwin" else "nixos"; platformModules = "${platform}Modules"; -in { +in +{ system.stateVersion = "24.05"; imports = lib.flatten [ @@ -47,6 +46,7 @@ in { environment.systemPackages = [ pkgs.openssh pkgs.file + pkgs.fastfetch ]; home-manager.useGlobalPkgs = true; @@ -69,12 +69,15 @@ in { min-free = 128000000; max-free = 1000000000; - experimental-features = ["nix-command" "flakes"]; + experimental-features = [ + "nix-command" + "flakes" + ]; fallback = true; auto-optimise-store = true; - trusted-users = ["@wheel"]; + trusted-users = [ "@wheel" ]; substituters = [ "https://cache.nixos.org/" "https://nix-community.cachix.org"