initial commit

This commit is contained in:
Rouven Seifert 2022-12-18 17:01:34 +01:00
commit 9e4582d351
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
4 changed files with 342 additions and 0 deletions

18
flake.nix Normal file
View file

@ -0,0 +1,18 @@
{
description = "My hardware 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
];
};
};
};
}