initial commit, pc config

This commit is contained in:
Daniel Kauss Serna 2026-02-06 10:26:29 +01:00
commit 139aac8fef
6 changed files with 394 additions and 0 deletions

19
nixos/flake.nix Normal file
View file

@ -0,0 +1,19 @@
{
description = "Personal computer NixOS configuration";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
};
outputs = { self, nixpkgs, ... }:
let
system = "x86_64-linux";
in {
nixosConfigurations.daniel = nixpkgs.lib.nixosSystem {
inherit system;
modules = [
./configuration.nix
];
};
};
}