mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
20 lines
462 B
Nix
20 lines
462 B
Nix
{
|
|
description = "My nix setup";
|
|
inputs = {
|
|
nixpkgs.url = github:nixos/nixpkgs/nixos-22.11;
|
|
home-manager.url = github:nix-community/home-manager;
|
|
};
|
|
|
|
outputs = { self, nixpkgs, home-manager }: {
|
|
nixosConfigurations = {
|
|
thinkpad = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
./hosts/thinkpad/configuration.nix
|
|
home-manager.nixosModules.home-manager
|
|
];
|
|
};
|
|
};
|
|
};
|
|
}
|