nixos-config/base/gui-programs.nix

132 lines
3.3 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;
windowManager.i3.enable = true;
layout = "fr";
xkbVariant = "us";
libinput.enable = 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)
chrysalis
2022-01-11 16:08:21 +01:00
element-desktop
2022-10-20 11:05:26 +02:00
evince
2022-01-11 16:08:21 +01:00
feh
firefox
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
signal-desktop
2022-01-11 16:08:21 +01:00
slack
spotify
tdesktop
teams
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
2022-01-11 16:08:21 +01:00
inherit (pkgs.gnome) nautilus;
discord = pkgs.discord.override {nss = pkgs.nss_latest;};
2022-01-11 16:08:21 +01:00
};
2022-01-18 15:09:23 +01:00
networking.networkmanager = {
enable = true;
dispatcherScripts = [
{
2022-04-10 11:54:58 +02:00
source = let
grep = "${pkgs.gnugrep}/bin/grep";
nmcli = "${pkgs.networkmanager}/bin/nmcli";
in
pkgs.writeShellScript "disable_wifi_on_ethernet" ''
2022-01-18 15:09:23 +01:00
export LC_ALL=C
date >> /tmp/disable_wifi_on_ethernet.log
echo START "$@" >> /tmp/disable_wifi_on_ethernet.log
2022-01-18 15:09:23 +01:00
beginswith() { case $2 in "$1"*) true;; *) false;; esac; }
is_ethernet_interface ()
2022-01-18 15:09:23 +01:00
{
local type="$(${nmcli} dev show "$1" | grep 'GENERAL\.TYPE:' | awk '{ print $2 }')"
test "$type" = "ethernet" || beginswith enp "$1"
2022-01-18 15:09:23 +01:00
}
hotspot_enabled ()
{
${nmcli} dev | ${grep} -q "hotspot"
}
if is_ethernet_interface "$1" && ! hotspot_enabled; then
echo "change in ethernet and not in hotspot mode" >> /tmp/disable_wifi_on_ethernet.log
if [ "$2" = "up" ]; then
echo "turning wifi off" >> /tmp/disable_wifi_on_ethernet.log
nmcli radio wifi off
fi
2022-01-18 15:09:23 +01:00
if [ "$2" = "down" ]; then
echo "turning wifi on" >> /tmp/disable_wifi_on_ethernet.log
nmcli radio wifi on
fi
2022-01-18 15:09:23 +01:00
fi
echo END "$@" >> /tmp/disable_wifi_on_ethernet.log
2022-01-18 15:09:23 +01:00
'';
type = "basic";
}
];
};
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
}