nixos/flake.nix

72 lines
2.3 KiB
Nix
Raw Normal View History

2024-02-25 15:34:13 -09:00
{
description = "NixOS configuration with Home Manager";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/23.11";
2024-03-02 10:28:28 -09:00
apple-silicon.url = "github:tpwrules/nixos-apple-silicon";
2024-02-25 15:34:13 -09:00
home-manager = {
url = "github:nix-community/home-manager/release-23.11";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = inputs@{ nixpkgs, home-manager, ... }: {
nixosConfigurations = {
2024-02-28 13:28:34 -09:00
galvatron = nixpkgs.lib.nixosSystem {
2024-02-28 13:30:51 -09:00
system = "aarch64-linux";
2024-02-28 13:28:34 -09:00
modules = [
2024-02-28 14:39:56 -09:00
./configuration.nix {
hardware.asahi.peripheralFirmwareDirectory = ./galvatron/firmware;
boot.loader.efi.canTouchEfiVariables = false;
networking.hostName = "galvatron";
2024-02-28 14:42:41 -09:00
sound.enable = false;
2024-02-28 14:29:05 -09:00
}
2024-02-28 13:28:34 -09:00
./galvatron/hardware-configuration.nix
2024-03-01 18:03:28 -09:00
# ./galvatron/apple-silicon-support
2024-03-02 10:26:37 -09:00
apple-silicon.nixosModules.apple-silicon-support
2024-02-28 13:28:34 -09:00
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.mir = import ./home.nix;
}
];
};
2024-02-25 15:34:13 -09:00
starscream = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
2024-02-27 09:51:13 -09:00
./configuration.nix {
2024-02-27 09:52:33 -09:00
networking.hostName = "starscream";
boot.loader.efi.canTouchEfiVariables = true;
2024-02-28 14:44:29 -09:00
sound.enable = true;
2024-02-27 09:52:33 -09:00
}
2024-02-26 17:23:16 -09:00
./hardware/starscream-hw.nix
2024-02-25 15:34:13 -09:00
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.mir = import ./home.nix;
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
}
];
};
2024-02-26 17:28:29 -09:00
knockout = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
2024-02-27 09:51:13 -09:00
./configuration.nix {
2024-02-27 09:52:33 -09:00
networking.hostName = "knockout";
boot.loader.efi.canTouchEfiVariables = true;
2024-02-28 14:44:29 -09:00
sound.enable = true;
2024-02-27 09:52:33 -09:00
}
2024-02-26 17:28:29 -09:00
./hardware/knockout-hw.nix
home-manager.nixosModules.home-manager
{
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.mir = import ./home.nix;
# Optionally, use home-manager.extraSpecialArgs to pass arguments to home.nix
}
];
};
2024-02-25 15:34:13 -09:00
};
};
}