NixOS-Config/home/default.nix

12 lines
193 B
Nix

{ ... }: {
imports = [
./users
];
# Allow unfree
nixpkgs.config.allowUnfree = true;
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
home.stateVersion = "24.05";
}