forked from colonelpanic/dotfiles
100 lines
1.6 KiB
Nix
100 lines
1.6 KiB
Nix
{ config, pkgs, options, inputs, ... }:
|
|
{
|
|
imports = [
|
|
./fonts.nix
|
|
inputs.home-manager.nixosModule
|
|
];
|
|
|
|
services.autorandr.enable = true;
|
|
|
|
services.xserver = {
|
|
exportConfiguration = true;
|
|
enable = true;
|
|
layout = "us";
|
|
desktopManager = {
|
|
plasma5.enable = true;
|
|
};
|
|
displayManager = {
|
|
sddm = {
|
|
enable = true;
|
|
};
|
|
sessionCommands = ''
|
|
systemctl --user import-environment GDK_PIXBUF_MODULE_FILE DBUS_SESSION_BUS_ADDRESS PATH
|
|
'';
|
|
};
|
|
};
|
|
|
|
# This is for the benefit of VSCODE running natively in wayland
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
# Appearance
|
|
gnome.adwaita-icon-theme
|
|
hicolor-icon-theme
|
|
libsForQt5.breeze-gtk
|
|
materia-theme
|
|
numix-icon-theme-circle
|
|
papirus-icon-theme
|
|
tela-icon-theme
|
|
tela-circle-icon-theme
|
|
|
|
# XOrg
|
|
autorandr
|
|
wmctrl
|
|
xclip
|
|
xdotool
|
|
xorg.xev
|
|
xorg.xkbcomp
|
|
xorg.xwininfo
|
|
xsettingsd
|
|
|
|
# Desktop
|
|
alacritty
|
|
betterlockscreen
|
|
blueman
|
|
clipit
|
|
dfeet
|
|
dolphin
|
|
element-desktop
|
|
emacs
|
|
|
|
feh
|
|
firefox
|
|
gnome.cheese
|
|
gnome.gpaste
|
|
hexchat
|
|
kitty
|
|
kleopatra
|
|
libnotify
|
|
libreoffice
|
|
lxappearance
|
|
lxqt.lxqt-powermanagement
|
|
networkmanagerapplet
|
|
notify-osd-customizable
|
|
okular
|
|
pasystray
|
|
picom
|
|
pinentry
|
|
psensor
|
|
quassel
|
|
rofi
|
|
rofi-pass
|
|
rofi-systemd
|
|
simplescreenrecorder
|
|
skippy-xd
|
|
synergy
|
|
transmission-gtk
|
|
vscode
|
|
vlc
|
|
volnoti
|
|
wire-desktop
|
|
xfce.thunar
|
|
# zoom-us
|
|
|
|
# Audio
|
|
playerctl
|
|
pulsemixer
|
|
espeak
|
|
];
|
|
}
|