24 lines
542 B
Nix
24 lines
542 B
Nix
|
{ config, nur, ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
# Apps and programs
|
||
|
../../../modules/home
|
||
|
../../../modules/home/users
|
||
|
../../../modules/home/files
|
||
|
../../../modules/home/settings
|
||
|
../../../modules/home/programs
|
||
|
../../../modules/home/programs/misc/gaming/launchers
|
||
|
../../../modules/home/programs/misc/remote-desktop
|
||
|
../../../modules/home/sway
|
||
|
../../../modules/home/utils
|
||
|
|
||
|
# Misc
|
||
|
../../../overlays
|
||
|
../../../variables
|
||
|
../../../variables/look/colors/green
|
||
|
|
||
|
# Imports
|
||
|
nur.nixosModules.nur
|
||
|
];
|
||
|
}
|