This commit is contained in:
2024-11-15 15:59:23 +00:00
commit fc1f0f149a
4 changed files with 252 additions and 0 deletions

25
flake.nix Normal file
View File

@ -0,0 +1,25 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
lib = nixpkgs.lib;
in {
nixosConfigurations = {
graeme-nix = lib.nixosSystem {
inherit system;
modules = [ ./configuration.nix ];
};
};
};
}