11 lines
165 B
Nix
11 lines
165 B
Nix
{ pkgs, inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.dms.homeModules.dank-material-shell
|
|
../awww
|
|
];
|
|
|
|
programs.dank-material-shell = {
|
|
enable = true;
|
|
};
|
|
}
|