mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
hosts/bootstrap: update config
This commit is contained in:
parent
c6d2ca1465
commit
218e5cd724
@ -1,4 +1,4 @@
|
|||||||
{ self, lib, config, pkgs, inputs, modulesPath, ... }:
|
{ lib, config, pkgs, inputs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
@ -6,13 +6,13 @@
|
|||||||
];
|
];
|
||||||
|
|
||||||
isoImage = {
|
isoImage = {
|
||||||
isoBaseName = "bootstrap";
|
isoBaseName = config.networking.hostName;
|
||||||
contents = [{
|
contents = [{
|
||||||
source = self;
|
source = inputs.self;
|
||||||
target = "/bootstrap/";
|
target = "/bootstrap/";
|
||||||
}];
|
}];
|
||||||
storeContents = [
|
storeContents = [
|
||||||
self.devShells.${config.nixpkgs.system}.default
|
inputs.self.devShells.${config.nixpkgs.system}.default
|
||||||
] ++ builtins.attrValues inputs;
|
] ++ builtins.attrValues inputs;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -22,7 +22,5 @@
|
|||||||
supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
|
supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
networking.hostName = "bootstrap";
|
|
||||||
|
|
||||||
users.users.root.password = "";
|
users.users.root.password = "";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user