os/shared/home/default.nix

25 lines
304 B
Nix
Raw Normal View History

{ lib, ... }:
2023-05-21 21:15:04 +02:00
{
imports = [
2023-05-22 00:45:36 +02:00
./bash.nix
2023-05-21 21:15:04 +02:00
./git.nix
2023-05-23 09:58:47 +02:00
./mpd.nix
2023-05-21 22:26:26 +02:00
./programs.nix
2023-06-15 13:05:24 +02:00
./matrix.nix
2023-05-22 00:09:59 +02:00
./theme.nix
2023-05-21 21:15:04 +02:00
./gui
2023-05-23 17:38:19 +02:00
./nix
2023-05-21 21:15:04 +02:00
];
options.isNixos = lib.mkOption {
type = lib.types.bool;
default = false;
};
2023-05-23 17:38:19 +02:00
config = {
theme = import ../../themes/lean.nix;
};
2023-05-22 00:09:59 +02:00
2023-05-21 21:15:04 +02:00
}