Files
laptop-nix-config/home.nix

19 lines
231 B
Nix

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