mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-25 12:19:12 +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 = [
|
||||
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user