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 = [
@ -8,16 +8,14 @@
isoImage = {
isoBaseName = config.networking.hostName;
contents = [{
source = self;
source = inputs.self;
target = "/bootstrap/";
}];
storeContents = [
self.devShells.${config.nixpkgs.system}.default
inputs.self.devShells.${config.nixpkgs.system}.default
] ++ builtins.attrValues inputs;
};
networking.wireless.enable = lib.mkForce false;
profiles = {
desktop = {
enable = true;
@ -42,8 +40,6 @@
};
};
networking.hostName = "graphical-installer";
boot = {
kernelPackages = pkgs.linuxPackages_latest;
loader.systemd-boot.enable = true;