initial commit

This commit is contained in:
2024-12-20 01:38:32 -08:00
commit 698291132c
5 changed files with 543 additions and 0 deletions

21
flake.nix Normal file
View File

@@ -0,0 +1,21 @@
# /etc/nixos/flake.nix
{
description = "flake for Yura-PC";
inputs = {
nixpkgs = {
url = "github:NixOS/nixpkgs/nixos-unstable";
};
};
outputs = { self, nixpkgs }: {
nixosConfigurations = {
Yura-PC = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
./configuration.nix
];
};
};
};
}