25 lines
382 B
Nix
25 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";
|
|
};
|
|
}
|