From e3c22cbd2de173c05dfe0146ba548468192bf3dc Mon Sep 17 00:00:00 2001 From: Johannes Hendrik Gerard van der Weide Date: Mon, 25 Mar 2024 11:54:45 +0100 Subject: [PATCH] removed iso part due to needing nm wireless --- flake.nix | 28 ---------------------------- system/boot.nix | 4 +++- system/networking.nix | 4 +++- 3 files changed, 6 insertions(+), 30 deletions(-) diff --git a/flake.nix b/flake.nix index a8b4071..8e310fb 100644 --- a/flake.nix +++ b/flake.nix @@ -65,34 +65,6 @@ inherit system; }; }; - - alex = lib.nixosSystem { - inherit system; - modules = [ - "${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix" - ./system - ./programs - ./hertog/user.nix - nix-flatpak.nixosModules.nix-flatpak - home-manager.nixosModules.home-manager { - home-manager = { - useGlobalPkgs = true; - useUserPackages = true; - users = { - hertog = import hertog/home.nix; - }; - extraSpecialArgs = { - inherit inputs; - }; - }; - } - ]; - specialArgs = { - inputs = inputs; - inherit nix-colors; - inherit system; - }; - }; }; packages."${system}" = { vim = nixvim.legacyPackages."${system}".makeNixvimWithModule { diff --git a/system/boot.nix b/system/boot.nix index 8637873..2c415b2 100644 --- a/system/boot.nix +++ b/system/boot.nix @@ -1,7 +1,9 @@ +{ lib, ... }: + { boot = { loader = { - timeout = 0; + timeout = lib.mkForce 0; efi.canTouchEfiVariables = true; systemd-boot = { enable = true; diff --git a/system/networking.nix b/system/networking.nix index 681e4fb..942babf 100644 --- a/system/networking.nix +++ b/system/networking.nix @@ -1,3 +1,5 @@ { - networking.hostName = "sam"; + networking = { + hostName = "sam"; + }; }