Compare commits

...

5 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
autumn-the-kitty-cat 7d30a5396f feat: add flakes to nix iso 2025-12-01 20:37:08 -05:00
autumn-the-kitty-cat d1c1622489 feat: add .gitignore 2025-12-01 20:36:59 -05:00
3 changed files with 30 additions and 2 deletions
+1
View File
@@ -0,0 +1 @@
/result
Generated
+27
View File
@@ -0,0 +1,27 @@
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1764522689,
"narHash": "sha256-SqUuBFjhl/kpDiVaKLQBoD8TLD+/cTUzzgVFoaHrkqY=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "8bb5646e0bed5dbd3ab08c7a7cc15b75ab4e1d0f",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-25.11",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}
+2 -2
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,12 +17,12 @@
{
imports = [ (modulesPath + "/installer/cd-dvd/installation-cd-minimal.nix") ];
networking.wireless.enable = nixpkgs.lib.mkForce false;
networking.networkmanager.enable = true;
environment.systemPackages = with pkgs; [
neovim
git
nh
];
i18n.defaultLocale = "en_US.UTF-8";