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 {
|
2022-01-07 17:44:30 +01:00
|
|
|
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-07 17:44:30 +01:00
|
|
|
};
|
2021-06-01 14:28:20 +02:00
|
|
|
|
2022-01-11 16:08:21 +01:00
|
|
|
config = mkIf config.my.gui.enable {
|
2022-01-07 17:44:30 +01:00
|
|
|
my.displayManager.sddm.enable = true;
|
|
|
|
|
2022-11-14 20:30:51 +01:00
|
|
|
programs.gnupg.agent = {
|
|
|
|
enable = true;
|
|
|
|
enableSSHSupport = true;
|
2022-12-12 15:22:58 +01:00
|
|
|
pinentryFlavor = "qt";
|
2022-11-14 20:30:51 +01:00
|
|
|
};
|
|
|
|
|
2022-01-07 17:44:30 +01:00
|
|
|
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;
|
2022-01-07 17:44:30 +01:00
|
|
|
windowManager.i3.enable = true;
|
|
|
|
layout = "fr";
|
|
|
|
xkbVariant = "us";
|
2023-07-11 20:39:24 +02:00
|
|
|
libinput = {
|
|
|
|
enable = true;
|
|
|
|
touchpad = {
|
|
|
|
naturalScrolling = true;
|
|
|
|
};
|
|
|
|
};
|
2022-01-07 17:44:30 +01:00
|
|
|
};
|
2022-01-17 22:02:26 +01:00
|
|
|
|
|
|
|
logind.lidSwitch = "ignore";
|
2022-01-07 17:44:30 +01:00
|
|
|
};
|
|
|
|
|
2022-01-11 16:08:21 +01:00
|
|
|
environment.systemPackages = builtins.attrValues {
|
2022-04-10 11:54:58 +02:00
|
|
|
inherit
|
|
|
|
(pkgs)
|
2022-10-20 11:05:12 +02:00
|
|
|
chrysalis
|
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
|
|
|
|
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
|
|
|
|
2022-01-11 16:08:21 +01:00
|
|
|
inherit (pkgs.gnome) nautilus;
|
|
|
|
|
2023-06-19 17:37:35 +02:00
|
|
|
inherit (pkgs.libsForQt5) okular;
|
|
|
|
|
2022-12-15 11:49:48 +01:00
|
|
|
discord = pkgs.discord.override {nss = pkgs.nss_latest;};
|
2022-01-11 16:08:21 +01:00
|
|
|
};
|
2021-04-19 16:07:38 +02: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
|
2022-06-13 16:42:22 +02:00
|
|
|
date >> /tmp/disable_wifi_on_ethernet.log
|
|
|
|
echo START "$@" >> /tmp/disable_wifi_on_ethernet.log
|
2022-01-18 15:09:23 +01:00
|
|
|
|
2022-06-13 16:42:22 +02:00
|
|
|
beginswith() { case $2 in "$1"*) true;; *) false;; esac; }
|
|
|
|
|
|
|
|
is_ethernet_interface ()
|
2022-01-18 15:09:23 +01:00
|
|
|
{
|
2022-06-13 16:42:22 +02: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
|
|
|
}
|
|
|
|
|
2022-06-13 16:42:22 +02: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
|
|
|
|
2022-06-13 16:42:22 +02: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
|
2022-06-13 16:42:22 +02:00
|
|
|
echo END "$@" >> /tmp/disable_wifi_on_ethernet.log
|
2022-01-18 15:09:23 +01:00
|
|
|
'';
|
|
|
|
type = "basic";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
2022-01-07 17:20:57 +01:00
|
|
|
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;
|
|
|
|
|
2022-01-07 17:20:57 +01:00
|
|
|
# NOTE: needed for home emacs configuration
|
|
|
|
nixpkgs.config.input-fonts.acceptLicense = true;
|
|
|
|
};
|
2021-04-16 21:33:48 +02:00
|
|
|
}
|