Bruno BELANYI
570349e80f
All checks were successful
ci/woodpecker/push/check Pipeline was successful
My profiles are actually just "special" NixOS modules in that they orchestrate settings that usually span the NixOS/home-manager boundary, or otherwise set up configurations from multiple modules at once.
13 lines
184 B
Nix
13 lines
184 B
Nix
# Configuration that spans accross system and home, or are almagations of modules
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
./bluetooth
|
|
./devices
|
|
./gtk
|
|
./laptop
|
|
./wm
|
|
./x
|
|
];
|
|
}
|