nixos-config/config/desktop.nix

142 lines
3.9 KiB
Nix
Raw Normal View History

2022-06-12 15:39:15 +00:00
{
2022-06-14 06:42:42 +00:00
system,
nix-packages,
2022-06-12 15:39:15 +00:00
config,
pkgs,
...
} @ args: let
lockscreen-all = pkgs.writeScript "lockscreen-all" ''
#!${pkgs.bash}/bin/bash
if ${pkgs.coreutils}/bin/[ -z "$(${pkgs.usbutils}/bin/lsusb | grep Yubico)" ]; then
${pkgs.systemd}/bin/loginctl list-sessions | ${pkgs.gnugrep}/bin/grep '^\ ' | ${pkgs.gawk}/bin/awk '{print $1}' | ${pkgs.findutils}/bin/xargs -i ${pkgs.systemd}/bin/loginctl lock-session {}
fi
'';
2022-06-12 15:39:15 +00:00
in {
2022-01-18 13:55:16 +00:00
imports = [
2022-01-18 19:57:00 +00:00
./services/pipewire.nix
2022-05-11 18:34:55 +00:00
./desktop-secrets.nix
2022-05-25 08:36:03 +00:00
./services/cups.nix
2022-12-08 10:57:08 +00:00
./services/docker.nix
2022-12-31 09:52:01 +00:00
./services/cifs.nix
2022-01-18 13:55:16 +00:00
];
2023-01-06 09:28:49 +00:00
fonts = {
fontDir.enable = true;
fontconfig = {
enable = true;
defaultFonts = {
2023-01-12 13:21:58 +00:00
emoji = ["Noto Color Emoji"];
monospace = ["Fira Code" "Font Awesome 5 Free"];
sansSerif = ["Noto Sans" "Font Awesome 5 Free"];
serif = ["Noto Serif" "Font Awesome 5 Free"];
2023-01-06 09:28:49 +00:00
};
};
fonts = with pkgs; [
fira-code
fira-code-symbols
font-awesome
noto-fonts
noto-fonts-cjk
noto-fonts-emoji
noto-fonts-extra
(nerdfonts.override {fonts = ["FiraCode" "DroidSansMono" "Noto"];})
nix-packages.packages.${system}.nasin-nanpa
nix-packages.packages.${system}.fairfax-hd
];
};
fonts.fontconfig.localConf = ''
<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
<match target="scan">
<test name="family">
<string>Fairfax HD</string>
</test>
<edit name="spacing">
<int>100</int>
</edit>
</match>
</fontconfig>
'';
2022-06-14 11:50:10 +00:00
2022-01-18 16:19:54 +00:00
time.timeZone = "Etc/GMT-1"; # Confusing naming, it's 1 hour east of GMT
2022-02-02 09:58:25 +00:00
services.pcscd.enable = true;
security.pam = {
services.login.u2fAuth = true;
services.sddm.u2fAuth = true;
services.swaylock.u2fAuth = true;
u2f = {
enable = true;
2022-02-02 19:19:50 +00:00
control = "required";
};
};
services.udev.extraRules = ''
ACTION=="remove", ENV{ID_VENDOR_ID}=="1050", ENV{ID_MODEL_ID}=="0407", RUN+="${lockscreen-all}"
2022-11-08 11:56:28 +00:00
SUBSYSTEM=="usb", ATTRS{idVendor}=="e621", ATTRS{idProduct}=="0000", TAG+="uaccess"
SUBSYSTEM=="hidraw*", ATTRS{idVendor}=="e621", ATTRS{idProduct}=="0000", TAG+="uaccess"
SUBSYSTEM=="usb", ENV{DEVTYPE}=="usb_device", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="0337", TAG+="uaccess"
SUBSYSTEM=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="0306", TAG+="uaccess"
SUBSYSTEM=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="0330", TAG+="uaccess"
'';
2022-02-08 07:20:05 +00:00
programs.steam.enable = true;
2022-02-08 11:10:50 +00:00
nixpkgs.overlays = [
(curr: prev: {
steam = prev.steam.override {
2022-06-12 15:39:15 +00:00
extraPkgs = pkgs:
with pkgs; [
mono
2022-09-18 15:57:51 +00:00
fuse
2022-06-12 15:39:15 +00:00
];
2022-02-08 11:10:50 +00:00
};
})
];
2022-09-18 16:24:45 +00:00
services.flatpak.enable = true;
2022-02-22 06:59:53 +00:00
programs.java.enable = true;
2022-03-05 19:16:12 +00:00
hardware.opengl.driSupport = true;
hardware.opengl.driSupport32Bit = true;
2022-06-12 15:39:15 +00:00
home-manager.users.darkkirb = import ./home-manager/darkkirb.nix {
desktop = true;
inherit args;
};
2022-03-20 13:38:52 +00:00
2022-04-06 07:22:37 +00:00
# For syncthing
2022-06-12 15:39:15 +00:00
networking.firewall.allowedTCPPorts = [22000];
networking.firewall.allowedUDPPorts = [22000];
2022-07-06 06:59:56 +00:00
2022-08-14 18:11:45 +00:00
environment.systemPackages = with pkgs; [
2023-01-10 20:05:07 +00:00
pinentry-qt
2022-07-06 06:59:56 +00:00
];
2023-01-10 20:05:07 +00:00
programs.gnupg.agent.pinentryFlavor = "qt";
2022-07-06 06:59:56 +00:00
xdg.portal = {
enable = true;
wlr.enable = true;
# gtk portal needed to make gtk apps happy
2022-07-06 10:50:25 +00:00
extraPortals = [pkgs.xdg-desktop-portal-gtk];
2022-07-06 06:59:56 +00:00
};
2022-07-06 18:08:58 +00:00
programs.dconf.enable = true;
2022-07-10 08:34:55 +00:00
services.xserver = {
enable = true;
libinput.enable = true;
layout = "de";
xkbVariant = "neo";
};
boot.kernelPackages = pkgs.zfsUnstable.latestCompatibleLinuxPackages;
2022-11-08 09:03:55 +00:00
i18n.inputMethod = {
enabled = "ibus";
ibus.engines = with pkgs.ibus-engines; [anthy];
};
2023-01-01 13:38:29 +00:00
security.polkit.enable = true;
2023-01-06 09:28:49 +00:00
services.dbus.enable = true;
2023-01-12 13:21:58 +00:00
services.dbus.packages = with pkgs; [dconf];
# Futureproofing: on non-x86 machines, emulate x86
boot.binfmt.emulatedSystems =
if system != "x86_64-linux"
then [
"x86_64-linux"
"i686-linux"
]
else [];
2022-01-18 13:55:16 +00:00
}