nixos-config/modules/home/default.nix
2025-01-21 12:04:09 -05:00

24 lines
382 B
Nix

{ nur, lib, ... }:
{
imports = [
./files
./programs
./services
./settings
./wms
./user
../extras
# Imports
nur.modules.homeManager.default
];
options.home = {
desktop.enable = lib.mkEnableOption "Enable desktop programs and services.";
};
config = {
nixpkgs.config.allowUnfree = true;
home.stateVersion = "24.11";
};
}