NixOS-Config/modules/home/default.nix

20 lines
263 B
Nix
Raw Normal View History

{ nur, ... }:
2024-10-09 03:36:08 -04:00
{
imports = [
./files
./options
./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
];
nixpkgs.config.allowUnfree = true;
2024-12-08 06:41:06 -05:00
home.stateVersion = "24.11";
}