Initial commit

This commit is contained in:
2026-01-27 20:17:44 +01:00
commit 5ba014c249
5 changed files with 244 additions and 0 deletions

20
flake.nix Normal file
View File

@@ -0,0 +1,20 @@
{
description = "Planned Disorder";
inputs = {
nixpkgs = {
url = "github:nixos/nixpkgs/nixos-25.11";
};
home-manager = {
url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
};
# This strange syntax is a workaround for the intentional limitations of `flake.nix` files.
# https://discourse.nixos.org/t/outlining-the-differences-between-flakes-and-nix-configs/72996
#
# It imports the file with the top-level options from [inputs] as arguments.
outputs = inputs: import ./outputs.nix inputs;
}