a very first attempt

This commit is contained in:
Remy Moll 2024-08-25 13:56:24 +02:00
parent ea448e39b2
commit 166bed403e
3 changed files with 19 additions and 0 deletions

19
flake.nix Normal file
View File

@ -0,0 +1,19 @@
{
description = "Nix config entry point";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
# probably home manager at some point
};
outputs = { self, nixpkgs, ... }@inputs: {
nixosConfigurations.spectre-x360-2018 = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./machines/spectre-x360-2018/configuration.nix
];
};
};
}