mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 17:43:55 -05:00
106 lines
2.6 KiB
Nix
106 lines
2.6 KiB
Nix
{ pkgs, lib, config, ... }: {
|
|
|
|
options = {
|
|
desktopEnv.sway.enable =
|
|
lib.mkEnableOption "Sway with extra apps.";
|
|
};
|
|
|
|
config = lib.mkIf config.desktopEnv.sway.enable {
|
|
|
|
# Basic apps needed to run a hyprland desktop.
|
|
guiApps.waybar.enable = lib.mkDefault true;
|
|
guiApps.mako.enable = lib.mkDefault true;
|
|
guiApps.fuzzel.enable = lib.mkDefault true;
|
|
guiApps.wlogout.enable = lib.mkDefault true;
|
|
guiApps.alacritty.enable = lib.mkDefault true;
|
|
guiApps.firefox.enable = lib.mkDefault true;
|
|
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [
|
|
brightnessctl
|
|
evince
|
|
playerctl
|
|
xfce.exo
|
|
xfce.ristretto
|
|
xfce.thunar
|
|
xfce.thunar-archive-plugin
|
|
xfce.thunar-media-tags-plugin
|
|
xfce.thunar-volman
|
|
xfce.tumbler
|
|
xfce.xfce4-settings
|
|
xfce.xfce4-taskmanager
|
|
xfce.xfconf
|
|
];
|
|
|
|
services.cliphist.enable = true;
|
|
|
|
wayland.windowManager.sway = {
|
|
enable = true;
|
|
extraConfig = builtins.readFile ./config.conf;
|
|
};
|
|
|
|
xdg.configFile."xfce4/helpers.rc".text = ''
|
|
TerminalEmulator=alacritty
|
|
FileManager=thunar
|
|
WebBrowser=firefox
|
|
'';
|
|
|
|
xdg.portal = {
|
|
enable = true;
|
|
configPackages = [ pkgs.xdg-desktop-portal-wlr];
|
|
extraPortals = [ pkgs.xdg-desktop-portal-wlr ];
|
|
};
|
|
|
|
home.pointerCursor = {
|
|
gtk.enable = true;
|
|
x11.enable = true;
|
|
package = pkgs.catppuccin-cursors.frappeDark;
|
|
name = "Catppuccin-Frappe-Dark-Cursors";
|
|
size = 24;
|
|
};
|
|
|
|
qt = {
|
|
enable = true;
|
|
platformTheme = "gtk";
|
|
style.name = "Catppuccin-Frappe-Compact-Mauve-Dark";
|
|
};
|
|
|
|
gtk = {
|
|
enable = true;
|
|
|
|
theme = {
|
|
package = pkgs.catppuccin-gtk.override {
|
|
accents = [ "mauve" ];
|
|
size = "compact";
|
|
variant = "frappe";
|
|
tweaks = [ "normal" ];
|
|
};
|
|
name = "Catppuccin-Frappe-Compact-Mauve-Dark";
|
|
};
|
|
|
|
iconTheme = {
|
|
package = pkgs.catppuccin-papirus-folders.override {
|
|
flavor = "frappe";
|
|
accent = "mauve";
|
|
};
|
|
name = "Papirus-Dark";
|
|
};
|
|
|
|
font = {
|
|
name = "NotoSans Nerd Font Regular";
|
|
package = pkgs.nerdfonts.override { fonts = [ "Noto" ]; };
|
|
size = 11;
|
|
};
|
|
};
|
|
|
|
dconf.settings = {
|
|
"org/gnome/desktop/interface" = {
|
|
gtk-theme = "Catppuccin-Frappe-Compact-Mauve-Dark";
|
|
color-scheme = "prefer-dark";
|
|
cursor-theme = "Catppuccin-Frappe-Dark-Cursors";
|
|
cursor-size = 24;
|
|
};
|
|
};
|
|
};
|
|
}
|