This commit is contained in:
Bryan Ramos 2023-06-06 02:28:37 -04:00
parent cc18493707
commit 6fff6d1845
673 changed files with 1070 additions and 124971 deletions

View file

@ -0,0 +1,40 @@
{ pkgs, lib, config, ... }:
with lib;
let
cfg = config.modules.gui;
in
{ options.modules.gui = { enable = mkEnableOption "gui"; };
config = mkIf cfg.enable {
wayland.windowmanager.sway = import ./config/sway.nix { inherit pkgs; };
programs.rofi = import ./config/rofi.nix { inherit pkgs; };
gtk = {
enable = true;
theme.package = pkgs.juno-theme;
theme.name = "Juno-ocean";
iconTheme.package = pkgs.qogir-icon-theme;
iconTheme.name = "Qogir";
};
programs.btop.enable = true;
fonts.fontconfig.enable = true;
home.packages = [
xdg-utils
grim
slurp
imv
gimp
evince
noto-fonts
noto-fonts-cjk
emote
emojione
];
};
}