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; [
|
udev.packages = with pkgs; [
|
||||||
usb-sniffer
|
usb-sniffer
|
||||||
];
|
];
|
||||||
|
|
||||||
|
hardware.openrgb.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
hardware = {
|
hardware = {
|
||||||
|
|||||||
@@ -192,7 +192,10 @@
|
|||||||
|
|
||||||
networkmanager = {
|
networkmanager = {
|
||||||
enable = true;
|
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" ];
|
wayland.windowManager.hyprland.settings.input.kb_options = [ "lv3:caps_switch" ];
|
||||||
services.nextcloud-client.enable = true;
|
services.nextcloud-client.enable = true;
|
||||||
systemd.user.services = {
|
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 = {
|
blueman-applet = {
|
||||||
Unit = {
|
Unit = {
|
||||||
Description = "Bluetooth manager applet";
|
Description = "Bluetooth manager applet";
|
||||||
|
|||||||
@@ -7,7 +7,14 @@
|
|||||||
sha256 = "0lghiiiphbkqgiprqirxifldvix0j4k04jh1z9f911shrzjgqq4s";
|
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; [
|
home.packages = with pkgs; [
|
||||||
# nix
|
# nix
|
||||||
cachix
|
cachix
|
||||||
@@ -22,7 +29,6 @@
|
|||||||
# media
|
# media
|
||||||
yt-dlp
|
yt-dlp
|
||||||
f3d
|
f3d
|
||||||
jellyfin-mpv-shim
|
|
||||||
makemkv
|
makemkv
|
||||||
libfaketime
|
libfaketime
|
||||||
handbrake
|
handbrake
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ in
|
|||||||
mode = "3840x2160@144";
|
mode = "3840x2160@144";
|
||||||
position = "0x0";
|
position = "0x0";
|
||||||
scale = 1;
|
scale = 1;
|
||||||
bitdepth = 10;
|
bitdepth = 8;
|
||||||
addreserved = "80,0,0,0";
|
addreserved = "80,0,0,0";
|
||||||
cm = if cfg.hdr then "hdredid" else "srgb";
|
cm = if cfg.hdr then "hdredid" else "srgb";
|
||||||
sdr_min_luminance = 0.25;
|
sdr_min_luminance = 0.25;
|
||||||
|
|||||||
Reference in New Issue
Block a user