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": { "nodes": {
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1764517877, "lastModified": 1764522689,
"narHash": "sha256-pp3uT4hHijIC8JUK5MEqeAWmParJrgBVzHLNfJDZxg4=", "narHash": "sha256-SqUuBFjhl/kpDiVaKLQBoD8TLD+/cTUzzgVFoaHrkqY=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "2d293cbfa5a793b4c50d17c05ef9e385b90edf6c", "rev": "8bb5646e0bed5dbd3ab08c7a7cc15b75ab4e1d0f",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NixOS", "owner": "NixOS",
"ref": "nixos-unstable", "ref": "nixos-25.11",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }
+2 -7
View File
@@ -4,7 +4,7 @@
{ {
description = "Custom Minimal NixOS installation media"; description = "Custom Minimal NixOS installation media";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
outputs = outputs =
{ self, nixpkgs }: { self, nixpkgs }:
{ {
@@ -17,17 +17,12 @@
{ {
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ]; imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ];
networking.wireless.enable = nixpkgs.lib.mkForce false;
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
neovim neovim
git git
nh
]; ];
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";