Evie Litherland-Smith
46371470ee
Set custom mu4e modeline icons because it was annoying me Update keybinds, all workspaces now have a "default" program so to speak with associated keybind to launch
115 lines
2.5 KiB
Nix
115 lines
2.5 KiB
Nix
{ config, lib, pkgs, catppuccin-base16, ... }:
|
|
|
|
{
|
|
imports = [ ./default.nix ./firefox.nix ];
|
|
environment.systemPackages = with pkgs;
|
|
with libsForQt5.qt5; [
|
|
dex
|
|
mesa
|
|
libnotify
|
|
glib
|
|
gsettings-desktop-schemas
|
|
qtgraphicaleffects
|
|
qtsvg
|
|
qtquickcontrols2
|
|
catppuccin-sddm-corners
|
|
protonvpn-cli
|
|
protonvpn-gui
|
|
qbittorrent
|
|
signal-desktop
|
|
fractal
|
|
libreoffice
|
|
zotero
|
|
minesweep-rs
|
|
remmina
|
|
nomachine-client
|
|
];
|
|
stylix = {
|
|
autoEnable = false;
|
|
image = ./wallpapers/waves/cat-waves.png;
|
|
base16Scheme = "${catppuccin-base16}/base16/macchiato.yaml";
|
|
fonts = {
|
|
emoji = {
|
|
name = "Noto Color Emoji";
|
|
package = pkgs.noto-fonts-emoji;
|
|
};
|
|
monospace = {
|
|
name = "Fira Mono";
|
|
package = pkgs.fira-mono;
|
|
};
|
|
sansSerif = {
|
|
name = "Fira Sans";
|
|
package = pkgs.fira;
|
|
};
|
|
serif = {
|
|
name = "Fira Sans";
|
|
package = pkgs.fira;
|
|
};
|
|
};
|
|
homeManagerIntegration.followSystem = true;
|
|
targets.chromium.enable = true;
|
|
};
|
|
fonts = {
|
|
packages = with pkgs; [
|
|
fira
|
|
fira-mono
|
|
fira-code
|
|
(nerdfonts.override { fonts = [ "FiraCode" ]; })
|
|
dejavu_fonts
|
|
noto-fonts-emoji
|
|
emacs-all-the-icons-fonts
|
|
];
|
|
fontconfig = {
|
|
enable = true;
|
|
defaultFonts = rec {
|
|
sansSerif = [ "Fira Sans" "DejaVu Sans" ];
|
|
serif = sansSerif;
|
|
monospace = [ "Fira Mono" "DejaVu Sans Mono" ];
|
|
emoji = [ "Noto Color Emoji" ];
|
|
};
|
|
};
|
|
};
|
|
security = {
|
|
rtkit.enable = true;
|
|
pam.services.gtklock.enableGnomeKeyring = true;
|
|
};
|
|
sound.enable = true;
|
|
hardware = {
|
|
pulseaudio.enable = false;
|
|
bluetooth.enable = true;
|
|
};
|
|
services = {
|
|
gnome.gnome-keyring.enable = true;
|
|
pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
};
|
|
xserver = {
|
|
enable = true;
|
|
layout = "gb";
|
|
xkbVariant = "";
|
|
displayManager.sddm = {
|
|
enable = true;
|
|
theme = "catppuccin-sddm-corners";
|
|
autoNumlock = true;
|
|
settings = { General = { InputMethod = ""; }; };
|
|
};
|
|
};
|
|
};
|
|
programs = {
|
|
seahorse.enable = true;
|
|
dconf.enable = true;
|
|
light.enable = true;
|
|
noisetorch.enable = true;
|
|
kdeconnect.enable = true;
|
|
};
|
|
gtk.iconCache.enable = true;
|
|
qt = {
|
|
enable = true;
|
|
style = "gtk2";
|
|
platformTheme = "gtk2";
|
|
};
|
|
}
|