Initial commit of NixOS configuration

This commit is contained in:
2025-12-30 03:07:28 +00:00
commit 3272868b58
25 changed files with 779 additions and 0 deletions

18
home.nix Normal file
View File

@@ -0,0 +1,18 @@
{
config,
pkgs,
lib,
...
}: {
imports = [
./components
./programs
];
home.username = "toaster";
home.homeDirectory = "/home/toaster";
nixpkgs.config.allowUnfree = true;
home.stateVersion = "25.11";
}