nixos/config/etc.nix

30 lines
887 B
Nix
Raw Normal View History

2019-02-26 13:44:40 +01:00
{
2023-09-11 20:23:04 +02:00
config,
lib,
pkgs,
...
}:
with lib; {
environment.etc = mkIf (elem "etcfiles" config.machine.conffiles) {
2023-09-11 20:23:04 +02:00
"rofi.rasi".source = import ./etc/rofi.rasi.nix {inherit pkgs;};
2019-02-26 13:44:40 +01:00
"i3/py3status".source = ./etc/i3/py3status;
"sway/config".source = mkDefault ./etc/sway/config;
2019-02-26 13:44:40 +01:00
"mpv/input.conf".source = ./etc/mpv/input.conf;
"mpv/mpv.conf".source = ./etc/mpv/mpv.conf;
"youtube-dl.conf".source = ./etc/youtube-dl.conf;
};
environment.variables = mkIf (elem "etcvars" config.machine.conffiles) {
2024-02-21 21:24:01 +01:00
# Bat breaks manpages
# https://github.com/sharkdp/bat/issues/2563
MANROFFOPT = "-c";
LC_CTYPE = "zh_CN.UTF-8";
MANPAGER = "sh -c 'col -bx | bat -l man -p'";
2020-05-26 16:34:50 +02:00
MPV_HOME = "/etc/mpv";
NIXPKGS_ALLOW_UNFREE = "1";
WINEDLLOVERRIDES = "winemenubuilder.exe=d";
# This breaks a lot of applications
# QT_SCALE_FACTOR="0.7";
2019-02-26 13:44:40 +01:00
};
}