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