add kremzeek, an installer iso config... why?
This commit is contained in:
parent
efadb29fcc
commit
519eef7154
23
flake.nix
23
flake.nix
@ -31,6 +31,29 @@
|
||||
home-manager,
|
||||
... }: {
|
||||
nixosConfigurations = {
|
||||
kremzeek =
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
specialArgs = { inherit inputs; };
|
||||
modules = [
|
||||
"${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix" {
|
||||
networking.wireless.enable = false;
|
||||
}
|
||||
./configuration.nix {
|
||||
networking.hostName = "kremzeek";
|
||||
boot.loader.efi.canTouchEfiVariables = true;
|
||||
sound.enable = true;
|
||||
}
|
||||
home-manager.nixosModules.home-manager
|
||||
{
|
||||
home-manager.useGlobalPkgs = true;
|
||||
home-manager.useUserPackages = true;
|
||||
home-manager.users.mir = import ./home.nix;
|
||||
home-manager.extraSpecialArgs = specialArgs;
|
||||
}
|
||||
]; # end of modules
|
||||
in
|
||||
nixpkgs.lib.nixosSystem {inherit system modules specialArgs; };
|
||||
galvatron =
|
||||
let
|
||||
system = "aarch64-linux";
|
||||
|
Loading…
Reference in New Issue
Block a user