mirror of
https://github.com/ivabus/nixos
synced 2024-11-10 02:25:18 +03:00
87 lines
2.8 KiB
Nix
87 lines
2.8 KiB
Nix
{
|
|
|
|
description = "ivabus's NixOS Flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/master";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
apple-silicon-support.url = "github:tpwrules/nixos-apple-silicon";
|
|
|
|
rust-overlay.url = "github:oxalica/rust-overlay";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager, rust-overlay, apple-silicon-support
|
|
, ... }@inputs: {
|
|
# Stella = Unchartevice 6540 (Ryzen 3 3250U, 16GB RAM)
|
|
nixosConfigurations."stella" = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = inputs;
|
|
modules = [ home-manager.nixosModules.home-manager ./machines/stella ];
|
|
};
|
|
|
|
# Vetus = iMac 27" 2017, i5, 64 GB RAM
|
|
nixosConfigurations."vetus" = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = inputs;
|
|
modules = [ home-manager.nixosModules.home-manager ./machines/vetus ];
|
|
};
|
|
|
|
# Celerrime = MacBook Air M2
|
|
nixosConfigurations."celerrime" = nixpkgs.lib.nixosSystem {
|
|
system = "aarch64-linux";
|
|
specialArgs = inputs;
|
|
modules = [
|
|
home-manager.nixosModules.home-manager
|
|
apple-silicon-support.nixosModules.apple-silicon-support
|
|
./machines/celerrime
|
|
];
|
|
};
|
|
|
|
# cursor = vm for "running" linux programs on aarch64
|
|
nixosConfigurations."cursor" = nixpkgs.lib.nixosSystem {
|
|
system = "aarch64-linux";
|
|
specialArgs = inputs;
|
|
modules = [ home-manager.nixosModules.home-manager ./machines/cursor ];
|
|
};
|
|
|
|
# Raspberry Pi 4B 2GB RAM
|
|
nixosConfigurations."rubusidaeus" = nixpkgs.lib.nixosSystem {
|
|
system = "aarch64-linux";
|
|
specialArgs = inputs;
|
|
modules = [
|
|
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
|
|
home-manager.nixosModules.home-manager
|
|
./machines/rubusidaeus
|
|
];
|
|
};
|
|
|
|
# VisionFive 2, 8GB - firewall + router
|
|
nixosConfigurations."periculo" = nixpkgs.lib.nixosSystem {
|
|
system = "riscv64-linux";
|
|
modules = [
|
|
#nixos-vf2.nixosModules.sdImage
|
|
./hardware/vf2.nix
|
|
home-manager.nixosModules.home-manager
|
|
./machines/periculo
|
|
];
|
|
};
|
|
|
|
# These machines will be configured later.
|
|
/* # Effundam = MacBook Air M1 (server usage). Will not be added to flake.nix until thunderbolt and apfs proper support
|
|
nixosConfigurations."effundam" = nixpkgs.lib.nixosSystem {
|
|
system = "aarch64-linux";
|
|
modules = [
|
|
home-manager.nixosModules.home-manager
|
|
apple-silicon-support.nixosModules.apple-silicon-support
|
|
./machines/effundam
|
|
];
|
|
};
|
|
*/
|
|
};
|
|
}
|