2024-02-29 17:06:55 -05:00
|
|
|
{
|
2024-03-13 14:17:21 -04:00
|
|
|
description = "Aly's NixOS flake.";
|
2024-02-29 17:06:55 -05:00
|
|
|
|
|
|
|
inputs = {
|
2024-03-05 17:54:51 -05:00
|
|
|
# Latest Stable NixOS, tracked by FlakeHub.
|
|
|
|
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*.tar.gz";
|
2024-03-02 13:09:35 -05:00
|
|
|
|
2024-03-13 14:17:21 -04:00
|
|
|
# Tracks latest stable home-manager using FlakeHub.
|
2024-02-29 17:06:55 -05:00
|
|
|
home-manager = {
|
2024-03-05 17:54:51 -05:00
|
|
|
url = "https://flakehub.com/f/nix-community/home-manager/0.*.*.tar.gz";
|
2024-02-29 17:06:55 -05:00
|
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
|
|
};
|
2024-03-05 17:54:51 -05:00
|
|
|
|
|
|
|
# Unstable NixOS channel.
|
|
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
|
|
|
|
# Home-manager, used for managing user configuration.
|
|
|
|
home-manager-unstable = {
|
|
|
|
url = "github:nix-community/home-manager/master";
|
|
|
|
inputs.nixpkgs.follows = "nixpkgs-unstable";
|
2024-03-02 13:09:35 -05:00
|
|
|
};
|
2024-03-05 17:54:51 -05:00
|
|
|
|
2024-03-12 22:44:08 -04:00
|
|
|
# # Declarative Flatpaks.
|
|
|
|
# nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=v0.3.0";
|
2024-03-02 09:35:58 -05:00
|
|
|
|
|
|
|
# Pre-baked hardware support for various devices.
|
2024-02-29 17:06:55 -05:00
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
2024-03-12 22:44:08 -04:00
|
|
|
};
|
2024-02-29 17:06:55 -05:00
|
|
|
|
2024-03-12 22:44:08 -04:00
|
|
|
outputs = inputs@{ nixpkgs, home-manager, nixpkgs-unstable, home-manager-unstable, nixos-hardware, ... }: {
|
2024-03-02 13:09:35 -05:00
|
|
|
|
2024-02-29 17:06:55 -05:00
|
|
|
nixosConfigurations = {
|
2024-03-12 23:11:10 -04:00
|
|
|
|
2024-03-14 14:03:11 -04:00
|
|
|
# Framework 13 with AMD Ryzen 7640U and 32GB RAM.
|
|
|
|
lavaridge = nixpkgs-unstable.lib.nixosSystem {
|
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
|
|
|
nixos-hardware.nixosModules.framework-13-7040-amd
|
|
|
|
home-manager-unstable.nixosModules.home-manager
|
|
|
|
./hosts/lavaridge
|
|
|
|
];
|
|
|
|
};
|
2024-02-29 21:27:10 -05:00
|
|
|
|
|
|
|
# T440p with i5-4210M and 16GB RAM.
|
2024-03-05 17:54:51 -05:00
|
|
|
rustboro = nixpkgs-unstable.lib.nixosSystem {
|
2024-02-29 17:06:55 -05:00
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
2024-03-13 14:17:21 -04:00
|
|
|
nixos-hardware.nixosModules.lenovo-thinkpad-t440p
|
|
|
|
home-manager-unstable.nixosModules.home-manager
|
2024-02-29 17:06:55 -05:00
|
|
|
./hosts/rustboro
|
|
|
|
];
|
|
|
|
};
|
2024-02-29 21:27:10 -05:00
|
|
|
|
|
|
|
# Lenovo Yoga 9i with i7-1360P and 16GB RAM.
|
2024-03-05 17:54:51 -05:00
|
|
|
petalburg = nixpkgs-unstable.lib.nixosSystem {
|
2024-02-29 17:06:55 -05:00
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
2024-03-03 21:51:21 -05:00
|
|
|
nixos-hardware.nixosModules.common-pc-laptop-ssd
|
|
|
|
nixos-hardware.nixosModules.common-cpu-intel
|
2024-03-13 14:17:21 -04:00
|
|
|
home-manager-unstable.nixosModules.home-manager
|
|
|
|
./hosts/petalburg
|
2024-02-29 17:06:55 -05:00
|
|
|
];
|
|
|
|
};
|
2024-03-03 21:42:59 -05:00
|
|
|
|
|
|
|
# Ryzen 5 2600 with 16GB RAM, RX 6700.
|
2024-03-05 17:54:51 -05:00
|
|
|
mauville = nixpkgs-unstable.lib.nixosSystem {
|
2024-03-03 21:42:59 -05:00
|
|
|
system = "x86_64-linux";
|
|
|
|
modules = [
|
2024-03-13 14:17:21 -04:00
|
|
|
home-manager-unstable.nixosModules.home-manager
|
2024-03-03 21:42:59 -05:00
|
|
|
./hosts/mauville
|
|
|
|
];
|
|
|
|
};
|
2024-02-29 17:06:55 -05:00
|
|
|
};
|
|
|
|
};
|
2024-03-06 22:14:16 -05:00
|
|
|
}
|