who up loading they boot

Main
Johannes Hendrik Gerard van der Weide 2024-03-11 18:31:39 +01:00
parent 0a08e8294d
commit 5d837a4027
3 changed files with 42 additions and 1 deletions

View File

@ -42,6 +42,35 @@
modules = [
nixos-hardware.nixosModules.framework-11th-gen-intel
./system
./system/hardware-configuration.nix
./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;
};
};
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

12
system/boot.nix Normal file
View File

@ -0,0 +1,12 @@
{
boot = {
loader = {
timeout = 0;
efi.canTouchEfiVariables = true;
systemd-boot = {
enable = true;
editor = false;
};
};
};
}

View File

@ -1,12 +1,12 @@
{
imports = [
./boot.nix
./environment.nix
./locale.nix
./networking.nix
./xserver.nix
./services.nix
./appliances.nix
./hardware-configuration.nix
];
nix = {