nixos-config/modules/home/default.nix

25 lines
382 B
Nix
Raw Normal View History

2025-01-21 12:02:11 -05:00
{ nur, lib, ... }:
2024-10-09 03:36:08 -04:00
{
imports = [
./files
./programs
./services
./settings
2024-11-12 18:03:28 -05:00
./wms
./user
../extras
# Imports
2024-12-12 07:27:58 -05:00
nur.modules.homeManager.default
];
2025-01-21 12:02:11 -05:00
options.home = {
desktop.enable = lib.mkEnableOption "Enable desktop programs and services.";
};
config = {
nixpkgs.config.allowUnfree = true;
home.stateVersion = "24.11";
};
}