nixos/hosts/desktop.nix
Evie Litherland-Smith b0de17462a Attempt to fix gtk theme setting
Add minimal nvim install as backup editor
Add bind to toggle swaync
2023-09-07 14:34:24 +01:00

40 lines
787 B
Nix

{ pkgs, ... }:
{
imports = [ ./common.nix ];
environment.systemPackages = with pkgs; [
libnotify
glib
gsettings-desktop-schemas
gnome.adwaita-icon-theme
papirus-folders
catppuccin-cursors
catppuccin-papirus-folders
catppuccin-gtk
];
security.rtkit.enable = true;
sound.enable = true;
hardware.pulseaudio.enable = false;
services = {
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
xserver = {
layout = "gb";
xkbVariant = "";
};
};
console.keyMap = "uk";
programs.ssh.startAgent = true;
programs.dconf.enable = true;
gtk.iconCache.enable = true;
qt = {
enable = true;
style = "gtk2";
platformTheme = "gtk2";
};
}