10 lines
141 B
Nix
10 lines
141 B
Nix
{ pkgs, lib, ... }:
|
|
let
|
|
profile = import ../profile.nix;
|
|
in
|
|
{
|
|
imports = [
|
|
./window-manager/${profile.interface}.nix
|
|
];
|
|
}
|