hosts/graphical-installer: update config

This commit is contained in:
Gabriel Arazas 2023-06-23 11:46:37 +08:00
parent 218e5cd724
commit c81038e609
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -1,4 +1,4 @@
{ self, lib, config, pkgs, inputs, modulesPath, ... }: { lib, config, pkgs, inputs, ... }:
{ {
imports = [ imports = [
@ -8,16 +8,14 @@
isoImage = { isoImage = {
isoBaseName = config.networking.hostName; 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;
}; };
networking.wireless.enable = lib.mkForce false;
profiles = { profiles = {
desktop = { desktop = {
enable = true; enable = true;
@ -42,8 +40,6 @@
}; };
}; };
networking.hostName = "graphical-installer";
boot = { boot = {
kernelPackages = pkgs.linuxPackages_latest; kernelPackages = pkgs.linuxPackages_latest;
loader.systemd-boot.enable = true; loader.systemd-boot.enable = true;