mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-26 00:19:11 +00:00
hosts/graphical-installer: update config
This commit is contained in:
parent
218e5cd724
commit
c81038e609
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user