33 lines
818 B
Nix
33 lines
818 B
Nix
{
|
|
description = "My system configuration.";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
|
|
};
|
|
|
|
outputs =
|
|
{ nixpkgs, home-manager, nixos-hardware, ... }:
|
|
{
|
|
nixosConfigurations.TARS = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./nixos/configuration.nix
|
|
nixos-hardware.nixosModules.framework-amd-ai-300-series
|
|
];
|
|
};
|
|
|
|
homeConfigurations.zeph = home-manager.lib.homeManagerConfiguration {
|
|
pkgs = nixpkgs.legacyPackages."x86_64-linux";
|
|
modules = [ ./home-manager/home.nix ];
|
|
};
|
|
|
|
};
|
|
|
|
}
|