mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 05:12:56 +00:00
417623965e
also change theme to colorscheme
12 lines
231 B
Nix
12 lines
231 B
Nix
{ config, pkgs, lib, ... }: {
|
|
|
|
config = lib.mkIf config.gui.enable {
|
|
home-manager.users.${config.user}.home.packages = with pkgs; [
|
|
mpv # Video viewer
|
|
sxiv # Image viewer
|
|
zathura # PDF viewer
|
|
];
|
|
};
|
|
|
|
}
|