dotfiles/home/apps/default.nix

32 lines
512 B
Nix
Raw Normal View History

2023-07-01 01:04:34 +02:00
{
2023-11-28 12:21:17 +01:00
lib,
osConfig,
...
}: {
2023-07-01 01:04:34 +02:00
imports = [
./browsers.nix
2023-07-13 08:45:39 +02:00
./colorscheme-sync.nix
2023-07-06 09:20:54 +02:00
./discord.nix
2023-07-01 01:04:34 +02:00
./fonts.nix
./git.nix
./gpg.nix
./gtk.nix
./kubernetes.nix
./mail.nix
./media.nix
./neovim.nix
./newsboat.nix
./rice.nix
./sway.nix
./vscode.nix
./wezterm.nix
./zsh.nix
];
2023-11-28 12:21:17 +01:00
options.isGraphical = lib.mkOption {
default = osConfig.isGraphical;
description = "Whether the system is a graphical target";
type = lib.types.bool;
};
2023-07-01 01:04:34 +02:00
}