who up loading they boot
parent
0a08e8294d
commit
5d837a4027
29
flake.nix
29
flake.nix
|
@ -42,6 +42,7 @@
|
||||||
modules = [
|
modules = [
|
||||||
nixos-hardware.nixosModules.framework-11th-gen-intel
|
nixos-hardware.nixosModules.framework-11th-gen-intel
|
||||||
./system
|
./system
|
||||||
|
./system/hardware-configuration.nix
|
||||||
./programs
|
./programs
|
||||||
./hertog/user.nix
|
./hertog/user.nix
|
||||||
nix-flatpak.nixosModules.nix-flatpak
|
nix-flatpak.nixosModules.nix-flatpak
|
||||||
|
@ -64,6 +65,34 @@
|
||||||
inherit system;
|
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}" = {
|
packages."${system}" = {
|
||||||
vim = nixvim.legacyPackages."${system}".makeNixvimWithModule {
|
vim = nixvim.legacyPackages."${system}".makeNixvimWithModule {
|
||||||
|
|
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
boot = {
|
||||||
|
loader = {
|
||||||
|
timeout = 0;
|
||||||
|
efi.canTouchEfiVariables = true;
|
||||||
|
systemd-boot = {
|
||||||
|
enable = true;
|
||||||
|
editor = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./boot.nix
|
||||||
./environment.nix
|
./environment.nix
|
||||||
./locale.nix
|
./locale.nix
|
||||||
./networking.nix
|
./networking.nix
|
||||||
./xserver.nix
|
./xserver.nix
|
||||||
./services.nix
|
./services.nix
|
||||||
./appliances.nix
|
./appliances.nix
|
||||||
./hardware-configuration.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
|
|
Loading…
Reference in New Issue