mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 16:23:55 -05:00
added sway config
This commit is contained in:
parent
98fe1dcdc0
commit
c469761495
|
@ -36,9 +36,13 @@
|
||||||
|
|
||||||
services.cliphist.enable = true;
|
services.cliphist.enable = true;
|
||||||
|
|
||||||
wayland.windowManager.sway = {
|
wayland.windowManager.sway.enable = true;
|
||||||
enable = true;
|
wayland.windowManager.sway.config = {
|
||||||
extraConfig = builtins.readFile ./config.conf;
|
bars = [{ command = "${pkgs.waybar}/bin/waybar"; }];
|
||||||
|
# bars.waybar.command = "${pkgs.waybar}/bin/waybar";
|
||||||
|
terminal = "${pkgs.alacritty}/bin/alacritty";
|
||||||
|
menu = "${pkgs.fuzzel}/bin/fuzzel";
|
||||||
|
modifier = "Mod4";
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.configFile."xfce4/helpers.rc".text = ''
|
xdg.configFile."xfce4/helpers.rc".text = ''
|
||||||
|
@ -52,56 +56,5 @@
|
||||||
configPackages = [pkgs.xdg-desktop-portal-wlr];
|
configPackages = [pkgs.xdg-desktop-portal-wlr];
|
||||||
extraPortals = [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;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue