From ecc62112d3c6ad86d4180d115f62340656d0c9a0 Mon Sep 17 00:00:00 2001 From: autumn-the-kitty-cat <147276465+autumn-the-kitty-cat@users.noreply.github.com> Date: Mon, 1 Dec 2025 23:42:44 -0500 Subject: [PATCH] feat: switch to stable nixpkgs, remove flakes and nh --- flake.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index f168f7f..7477fbc 100644 --- a/flake.nix +++ b/flake.nix @@ -4,7 +4,7 @@ { description = "Custom Minimal NixOS installation media"; - inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; + inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.05"; outputs = { self, nixpkgs }: { @@ -19,15 +19,9 @@ networking.networkmanager.enable = true; - nix.settings.experimental-features = [ - "nix-command" - "flakes" - ]; - environment.systemPackages = with pkgs; [ neovim git - nh ]; i18n.defaultLocale = "en_US.UTF-8";