os/shared/home/default.nix

24 lines
No EOL
287 B
Nix

{ lib, ... }:
{
imports = [
./bash.nix
./git.nix
./mpd.nix
./programs.nix
./theme.nix
./gui
./nix
];
options.isNixos = lib.mkOption {
type = lib.types.bool;
default = false;
};
config = {
theme = import ../../themes/lean.nix;
};
}