More Major Changes

This commit is contained in:
2025-07-22 09:39:33 -03:00
parent d7b5343864
commit 93de9d3665
9 changed files with 105 additions and 135 deletions

View File

@@ -60,7 +60,10 @@
# ========= Overlays =========
#
# Custom modifications/overrides to upstream packages.
overlays = import ./overlays {inherit inputs;};
overlays = import ./overlays {
inherit inputs;
inherit lib;
};
#
# ========= Host Configurations =========
@@ -111,7 +114,7 @@
#
# NOTE(starter): As with typical flake-based configs, you'll need to update the nixOS, hm,
# and darwin version numbers below when new releases are available.
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05";
# The next two inputs are for pinning nixpkgs to stable vs unstable regardless of what the above is set to.
# This is particularly useful when an upcoming stable release is in beta because you can effectively
# keep 'nixpkgs-stable' set to stable for critical packages while setting 'nixpkgs' to the beta branch to
@@ -119,11 +122,10 @@
# See also 'stable-packages' and 'unstable-packages' overlays at 'overlays/default.nix"
nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.11";
nixpkgs-unstable.url = "github:NixOS/nixpkgs/nixos-unstable";
nixpkgs-void-editor.url = "github:jskrzypek/nixpkgs/void-editor";
hardware.url = "github:nixos/nixos-hardware";
home-manager = {
url = "github:nix-community/home-manager";
url = "github:nix-community/home-manager/release-25.05";
inputs.nixpkgs.follows = "nixpkgs";
};
@@ -158,7 +160,7 @@
devenv.url = "github:cachix/devenv";
stylix = {
url = "github:danth/stylix";
url = "github:danth/stylix/release-25.05";
inputs.nixpkgs.follows = "nixpkgs";
};