21 lines
527 B
Nix
21 lines
527 B
Nix
{
|
|
description = "My systems installation";
|
|
inputs = {
|
|
nixpkgs.url = "nixpkgs/nixos-unstable";
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
outputs = { self, nixpkgs, home-manager, ... }@inputs: {
|
|
nixosConfigurations = {
|
|
mrmeeseeks = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./hosts/mrmeeseeks/configuration.nix
|
|
home-manager.nixosModule
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|