nixcfg/flake.nix

201 lines
5.6 KiB
Nix
Raw Normal View History

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 = {
# Latest stable NixOS release.
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
# Stable home-manager, synced with latest stable nixpkgs.
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
2024-03-02 13:09:35 -05:00
};
# Unstable NixOS.
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
# # Unstable version of home-manager.
# home-manager-unstable = {
# url = "github:nix-community/home-manager/master";
# inputs.nixpkgs.follows = "nixpkgs-unstable";
# };
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-04-01 20:29:48 -04:00
# impermanence.url = "github:nix-community/impermanence";
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";
jovian = {
url = "github:Jovian-Experiments/Jovian-NixOS";
inputs.nixpkgs.follows = "nixpkgs";
};
};
2024-02-29 17:06:55 -05:00
nixConfig = {
2024-05-05 22:00:46 -04:00
extra-substituters = ["https://nixcache.raffauflabs.com"];
extra-trusted-public-keys = [
"nixcache.raffauflabs.com:yFIuJde/izA4aUDI3MZmBLzynEsqVCT1OfCUghOLlt8="
];
};
2024-04-07 22:16:33 -04:00
outputs = inputs @ {
nixpkgs,
nixpkgs-unstable,
2024-04-07 22:16:33 -04:00
home-manager,
nixos-hardware,
disko,
jovian,
2024-04-07 22:16:33 -04:00
...
}: {
2024-04-30 17:55:51 -04:00
formatter."x86_64-linux" = nixpkgs.legacyPackages."x86_64-linux".alejandra;
2024-04-25 11:18:55 -04:00
homeConfigurations = {
aly = home-manager.lib.homeManagerConfiguration rec {
2024-04-25 11:18:55 -04:00
pkgs = import nixpkgs {system = "x86_64-linux";};
2024-05-03 07:04:07 -04:00
modules = [./aly.nix];
extraSpecialArgs = {
inherit inputs;
unstable = import nixpkgs-unstable {
system = "x86_64-linux";
config.allowUnfree = true;
};
};
2024-04-25 11:18:55 -04:00
};
dustin = home-manager.lib.homeManagerConfiguration rec {
2024-04-25 11:18:55 -04:00
pkgs = import nixpkgs {system = "x86_64-linux";};
2024-05-03 07:04:07 -04:00
modules = [./dustin.nix];
extraSpecialArgs = {
inherit inputs;
unstable = import nixpkgs-unstable {
system = "x86_64-linux";
config.allowUnfree = true;
};
};
2024-04-25 11:18:55 -04:00
};
2024-04-07 22:16:33 -04:00
};
2024-04-07 22:16:33 -04:00
nixosConfigurations = {
# Steam Deck OLED
mossdeep = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
specialArgs = {
inherit inputs;
unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
};
modules = [
disko.nixosModules.disko
jovian.nixosModules.default
nixos-hardware.nixosModules.common-pc-laptop-ssd
home-manager.nixosModules.home-manager
./hosts/mossdeep
./nixosModules
];
};
2024-04-07 22:16:33 -04:00
# Framework 13 with AMD Ryzen 7640U and 32GB RAM.
lavaridge = nixpkgs.lib.nixosSystem rec {
2024-04-07 22:16:33 -04:00
system = "x86_64-linux";
specialArgs = {
inherit inputs;
unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
};
2024-04-07 22:16:33 -04:00
modules = [
2024-05-01 22:12:13 -04:00
disko.nixosModules.disko
2024-04-07 22:16:33 -04:00
nixos-hardware.nixosModules.framework-13-7040-amd
home-manager.nixosModules.home-manager
2024-04-07 22:16:33 -04:00
./hosts/lavaridge
./nixosModules
];
};
# Framework 13 with 11th Gen Intel Core i5 and 16GB RAM.
fallarbor = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";
specialArgs = {
inherit inputs;
unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
};
modules = [
disko.nixosModules.disko
nixos-hardware.nixosModules.framework-11th-gen-intel
home-manager.nixosModules.home-manager
./hosts/fallarbor
./nixosModules
];
};
2024-04-07 22:16:33 -04:00
# Home Lab. Ryzen 5 2600 with 16GB RAM, RX 6700.
mauville = nixpkgs.lib.nixosSystem rec {
2024-04-07 22:16:33 -04:00
system = "x86_64-linux";
specialArgs = {
inherit inputs;
unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
};
2024-04-07 22:16:33 -04:00
modules = [
nixos-hardware.nixosModules.common-pc-ssd
nixos-hardware.nixosModules.common-cpu-amd
home-manager.nixosModules.home-manager
2024-04-07 22:16:33 -04:00
./hosts/mauville
./nixosModules
];
};
2024-04-07 22:16:33 -04:00
# Lenovo Yoga 9i with i7-1360P and 16GB RAM.
petalburg = nixpkgs.lib.nixosSystem rec {
2024-04-07 22:16:33 -04:00
system = "x86_64-linux";
specialArgs = {
inherit inputs;
unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
};
2024-04-07 22:16:33 -04:00
modules = [
disko.nixosModules.disko
2024-04-07 22:16:33 -04:00
nixos-hardware.nixosModules.common-pc-laptop-ssd
nixos-hardware.nixosModules.common-cpu-intel
home-manager.nixosModules.home-manager
2024-04-07 22:16:33 -04:00
./hosts/petalburg
./nixosModules
];
};
2024-03-24 19:44:09 -04:00
2024-04-07 22:16:33 -04:00
# T440p with i5-4210M and 16GB RAM.
rustboro = nixpkgs.lib.nixosSystem rec {
2024-04-07 22:16:33 -04:00
system = "x86_64-linux";
specialArgs = {
inherit inputs;
unstable = import nixpkgs-unstable {
inherit system;
config.allowUnfree = true;
};
};
2024-04-07 22:16:33 -04:00
modules = [
disko.nixosModules.disko
nixos-hardware.nixosModules.common-pc-laptop-ssd
2024-04-07 22:16:33 -04:00
nixos-hardware.nixosModules.lenovo-thinkpad-t440p
home-manager.nixosModules.home-manager
2024-04-07 22:16:33 -04:00
./hosts/rustboro
./nixosModules
];
};
2024-02-29 17:06:55 -05:00
};
2024-04-07 22:16:33 -04:00
};
}