17 lines
317 B
Nix
17 lines
317 B
Nix
{inputs, ...}: {
|
|
imports = inputs.nypkgs.legacyPackages."x86_64-linux".lib.umport {
|
|
path = ./.;
|
|
|
|
include = [
|
|
./system/packages/default.nix
|
|
./programs/graphical/waybar/default.nix
|
|
];
|
|
|
|
exclude = [
|
|
./default.nix
|
|
./system/packages
|
|
./programs/graphical/waybar
|
|
];
|
|
};
|
|
}
|