who up loading they boot
parent
0a08e8294d
commit
5d837a4027
29
flake.nix
29
flake.nix
|
@ -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
|
||||
|
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
boot = {
|
||||
loader = {
|
||||
timeout = 0;
|
||||
efi.canTouchEfiVariables = true;
|
||||
systemd-boot = {
|
||||
enable = true;
|
||||
editor = false;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
imports = [
|
||||
./boot.nix
|
||||
./environment.nix
|
||||
./locale.nix
|
||||
./networking.nix
|
||||
./xserver.nix
|
||||
./services.nix
|
||||
./appliances.nix
|
||||
./hardware-configuration.nix
|
||||
];
|
||||
|
||||
nix = {
|
||||
|
|
Loading…
Reference in New Issue