31 lines
686 B
Nix
Executable file
31 lines
686 B
Nix
Executable file
{
|
|
description = "Chris' services flake";
|
|
|
|
inputs = {
|
|
nixpkgs = {
|
|
url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
#url="path:/Rory-Open-Architecture/nixpkgs";
|
|
};
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager/master";
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager, ... }@inputs: {
|
|
nixosConfigurations = {
|
|
matrix = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./host/matrix/configuration.nix
|
|
./hardware-configuration.nix
|
|
home-manager.nixosModules.home-manager
|
|
];
|
|
specialArgs = {
|
|
inherit home-manager;
|
|
};
|
|
};
|
|
|
|
};
|
|
};
|
|
}
|