13 lines
208 B
Nix
13 lines
208 B
Nix
# Configuration that spans accross system and home, or are almagations of modules
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
./bluetooth.nix
|
|
./devices.nix
|
|
./gtk.nix
|
|
./laptop.nix
|
|
./wm.nix
|
|
./x.nix
|
|
];
|
|
}
|