nixos-config/base/gui-programs.nix

84 lines
1.7 KiB
Nix
Raw Normal View History

2022-04-10 11:54:58 +02:00
{
pkgs,
lib,
config,
options,
...
}: let
inherit
(lib)
2022-01-11 16:08:21 +01:00
mkEnableOption
mkIf
optional
2022-04-10 11:54:58 +02:00
;
in {
options.my.gui = {
2022-01-11 16:08:21 +01:00
enable = mkEnableOption "System has some kind of screen attached";
isNvidia = mkEnableOption "System a NVIDIA GPU";
};
2022-01-11 16:08:21 +01:00
config = mkIf config.my.gui.enable {
my.displayManager.sddm.enable = true;
programs.gnupg.agent = {
enable = true;
enableSSHSupport = true;
2022-12-12 15:22:58 +01:00
pinentryFlavor = "qt";
};
services = {
xserver = {
enable = true;
# NOTE: could use `mkOptionDefault` but this feels more explicit
2022-04-10 11:54:58 +02:00
videoDrivers =
if config.my.gui.isNvidia
then ["nvidia"]
else options.services.xserver.videoDrivers.default;
layout = "fr";
xkbVariant = "us";
libinput = {
enable = true;
touchpad = {
naturalScrolling = true;
};
};
};
2022-01-17 22:02:26 +01:00
logind.lidSwitch = "ignore";
};
2022-01-11 16:08:21 +01:00
environment.systemPackages = builtins.attrValues {
2022-04-10 11:54:58 +02:00
inherit
(pkgs)
2024-03-03 02:58:06 +01:00
discord
2022-01-11 16:08:21 +01:00
feh
ffmpeg
2023-03-30 12:40:44 +02:00
gimp-with-plugins
2022-01-11 16:08:21 +01:00
imagemagick
mpv
obs-studio
pavucontrol
spotify
tdesktop
thunderbird
virt-manager
2023-04-04 20:24:34 +02:00
xcolor
2022-01-11 16:08:21 +01:00
zathura
2022-04-10 11:54:58 +02:00
;
2021-04-18 14:46:12 +02:00
2023-06-19 17:37:35 +02:00
inherit (pkgs.libsForQt5) okular;
2022-01-11 16:08:21 +01:00
};
networking.networkmanager.enable = true;
programs.nm-applet.enable = true;
programs.steam.enable = true;
2022-04-20 11:57:50 +02:00
# this is necessary to set GTK stuff in home manager
# FIXME: better interdependency between this and the home part
programs.dconf.enable = true;
# NOTE: needed for home emacs configuration
nixpkgs.config.input-fonts.acceptLicense = true;
};
2021-04-16 21:33:48 +02:00
}