nixcfg/flake.nix

94 lines
3.2 KiB
Nix
Raw Normal View History

2024-02-29 17:06:55 -05:00
{
description = "Aly's NixOS configuration.";
inputs = {
# Latest Stable NixOS, tracked by FlakeHub.
nixpkgs.url = "https://flakehub.com/f/NixOS/nixpkgs/*.tar.gz";
2024-03-02 13:09:35 -05:00
# Home-manager, used for managing user configuration.
# Tracks latest stable version using FlakeHub.
2024-02-29 17:06:55 -05:00
home-manager = {
url = "https://flakehub.com/f/nix-community/home-manager/0.*.*.tar.gz";
2024-02-29 17:06:55 -05:00
# The `follows` keyword in inputs is used for inheritance.
# Here, `inputs.nixpkgs` of home-manager is kept consistent with
# the `inputs.nixpkgs` of the current flake,
# to avoid problems caused by different versions of nixpkgs.
inputs.nixpkgs.follows = "nixpkgs";
};
# 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";
2024-03-02 13:09:35 -05:00
# The `follows` keyword in inputs is used for inheritance.
# Here, `inputs.nixpkgs` of home-manager is kept consistent with
# the `inputs.nixpkgs` of the current flake,
# to avoid problems caused by different versions of nixpkgs.
inputs.nixpkgs.follows = "nixpkgs-unstable";
2024-03-02 13:09:35 -05: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-02-29 17:06:55 -05: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 = {
# # Framework 13 with AMD Ryzen 7640U and 32GB RAM.
# lavaridge = nixpkgs-unstable.lib.nixosSystem {
# system = "x86_64-linux";
# modules = [
# ./hosts/lavaridge
# ./desktop/gnome
# # Add home-manager nixos module so home-manager config deploys on nixos-rebuild.
# home-manager-unstable.nixosModules.home-manager
# # nixos-hardware configuration for fw13-amd.
# nixos-hardware.nixosModules.framework-13-7040-amd
# ];
# };
# T440p with i5-4210M and 16GB RAM.
rustboro = nixpkgs-unstable.lib.nixosSystem {
2024-02-29 17:06:55 -05:00
system = "x86_64-linux";
modules = [
./hosts/rustboro
2024-03-05 20:17:52 -05:00
./desktop/kde
home-manager-unstable.nixosModules.home-manager
2024-02-29 17:06:55 -05:00
nixos-hardware.nixosModules.lenovo-thinkpad-t440p
];
};
# Lenovo Yoga 9i with i7-1360P and 16GB RAM.
petalburg = nixpkgs-unstable.lib.nixosSystem {
2024-02-29 17:06:55 -05:00
system = "x86_64-linux";
modules = [
./hosts/petalburg
2024-02-29 17:06:55 -05:00
./desktop/gnome
home-manager-unstable.nixosModules.home-manager
nixos-hardware.nixosModules.common-pc-laptop-ssd
nixos-hardware.nixosModules.common-cpu-intel
2024-02-29 17:06:55 -05:00
];
};
# Ryzen 5 2600 with 16GB RAM, RX 6700.
mauville = nixpkgs-unstable.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/mauville
./desktop/gnome
./modules/homelab
./modules/steam
home-manager-unstable.nixosModules.home-manager
];
};
2024-02-29 17:06:55 -05:00
};
};
}