10 lines
128 B
Nix
10 lines
128 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./bookmarks
|
|
./css
|
|
./theme
|
|
];
|
|
|
|
gtk.enable = config.home.desktop.enable;
|
|
}
|