Compare commits

..

3 Commits

Author SHA1 Message Date
autumn-the-kitty-cat aae0379f69 fix: disable networking.wireless ; build: nixos 25.05 -> 25.11 2025-12-01 23:46:55 -05:00
autumn-the-kitty-cat 5e135d4c47 build: update flake.lock 2025-12-01 23:44:19 -05:00
autumn-the-kitty-cat ecc62112d3 feat: switch to stable nixpkgs, remove flakes and nh 2025-12-01 23:42:44 -05:00
2 changed files with 6 additions and 11 deletions
Generated
+4 -4
View File
@@ -2,16 +2,16 @@
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1764517877,
"narHash": "sha256-pp3uT4hHijIC8JUK5MEqeAWmParJrgBVzHLNfJDZxg4=",
"lastModified": 1764522689,
"narHash": "sha256-SqUuBFjhl/kpDiVaKLQBoD8TLD+/cTUzzgVFoaHrkqY=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "2d293cbfa5a793b4c50d17c05ef9e385b90edf6c",
"rev": "8bb5646e0bed5dbd3ab08c7a7cc15b75ab4e1d0f",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-unstable",
"ref": "nixos-25.11",
"repo": "nixpkgs",
"type": "github"
}
+2 -7
View File
@@ -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.11";
outputs =
{ self, nixpkgs }:
{
@@ -17,17 +17,12 @@
{
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ];
networking.wireless.enable = nixpkgs.lib.mkForce false;
networking.networkmanager.enable = true;
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
environment.systemPackages = with pkgs; [
neovim
git
nh
];
i18n.defaultLocale = "en_US.UTF-8";