mirror of https://github.com/materusPL/Nixerus.git
16 lines
149 B
Nix
16 lines
149 B
Nix
|
{
|
||
|
osProfile = {
|
||
|
imports = [
|
||
|
./os
|
||
|
./common
|
||
|
];
|
||
|
};
|
||
|
|
||
|
homeProfile = {
|
||
|
imports = [
|
||
|
./common
|
||
|
./home
|
||
|
];
|
||
|
};
|
||
|
|
||
|
}
|