mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2026-07-25 01:54:48 +00:00
update system
This commit is contained in:
@@ -60,6 +60,8 @@
|
||||
udev.packages = with pkgs; [
|
||||
usb-sniffer
|
||||
];
|
||||
|
||||
hardware.openrgb.enable = true;
|
||||
};
|
||||
|
||||
hardware = {
|
||||
|
||||
@@ -192,7 +192,10 @@
|
||||
|
||||
networkmanager = {
|
||||
enable = true;
|
||||
plugins = with pkgs; [ networkmanager-openconnect ];
|
||||
plugins = with pkgs; [
|
||||
networkmanager-openconnect
|
||||
networkmanager-openvpn
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -20,6 +20,17 @@
|
||||
wayland.windowManager.hyprland.settings.input.kb_options = [ "lv3:caps_switch" ];
|
||||
services.nextcloud-client.enable = true;
|
||||
systemd.user.services = {
|
||||
nm-applet = {
|
||||
Unit = {
|
||||
Description = "Network manager applet";
|
||||
After = [ "graphical-session.target" ];
|
||||
};
|
||||
Install.WantedBy = [ "graphical-session.target" ];
|
||||
Service = {
|
||||
ExecStart = "${pkgs.networkmanagerapplet}/bin/nm-applet";
|
||||
Restart = "always";
|
||||
};
|
||||
};
|
||||
blueman-applet = {
|
||||
Unit = {
|
||||
Description = "Bluetooth manager applet";
|
||||
|
||||
@@ -7,7 +7,14 @@
|
||||
sha256 = "0lghiiiphbkqgiprqirxifldvix0j4k04jh1z9f911shrzjgqq4s";
|
||||
}
|
||||
];
|
||||
programs.mpv.enable = true;
|
||||
programs.mpv = {
|
||||
enable = true;
|
||||
defaultProfiles = [ "gpu-hq" ];
|
||||
config = {
|
||||
tone-mapping = "mobius";
|
||||
};
|
||||
};
|
||||
services.jellyfin-mpv-shim.enable = true;
|
||||
home.packages = with pkgs; [
|
||||
# nix
|
||||
cachix
|
||||
@@ -22,7 +29,6 @@
|
||||
# media
|
||||
yt-dlp
|
||||
f3d
|
||||
jellyfin-mpv-shim
|
||||
makemkv
|
||||
libfaketime
|
||||
handbrake
|
||||
|
||||
@@ -74,7 +74,7 @@ in
|
||||
mode = "3840x2160@144";
|
||||
position = "0x0";
|
||||
scale = 1;
|
||||
bitdepth = 10;
|
||||
bitdepth = 8;
|
||||
addreserved = "80,0,0,0";
|
||||
cm = if cfg.hdr then "hdredid" else "srgb";
|
||||
sdr_min_luminance = 0.25;
|
||||
|
||||
Reference in New Issue
Block a user