Desktop Updates Fri May 30 06:05:19 PM CDT 2025

This commit is contained in:
mjallen18
2025-05-30 18:05:19 -05:00
parent 2014e73567
commit ae6cd87ecc
3 changed files with 20 additions and 17 deletions

View File

@@ -29,7 +29,6 @@
zlib zlib
]; ];
}; };
coolercontrol.enable = true;
seahorse.enable = true; seahorse.enable = true;
}; };

View File

@@ -49,6 +49,8 @@
root.shell = pkgs.zsh; root.shell = pkgs.zsh;
}; };
programs.coolercontrol.enable = true;
services = { services = {
btrfs = { btrfs = {
autoScrub.enable = lib.mkDefault true; autoScrub.enable = lib.mkDefault true;

View File

@@ -28,7 +28,7 @@ let
kdePackages.ksvg kdePackages.ksvg
memtest86-efi memtest86-efi
memtest86plus memtest86plus
occt # occt
os-prober os-prober
nil nil
qemu_full qemu_full
@@ -76,26 +76,26 @@ let
voltage_offset: 0 voltage_offset: 0
power_states: {} power_states: {}
''; '';
occt = pkgs.stdenv.mkDerivation { # occt = pkgs.stdenv.mkDerivation {
pname = "occt"; # pname = "occt";
version = "14.0.10"; # version = "14.0.10";
src = pkgs.fetchurl { # src = pkgs.fetchurl {
url = "https://www.ocbase.com/download-bin/edition:Personal/os:Linux"; # url = "https://www.ocbase.com/download-bin/edition:Personal/os:Linux";
sha256 = "sha256-AomQNi7ODGaznFaHqxlFUcrV36QeLNC65MoCV2y6HZ8="; # sha256 = "sha256-AomQNi7ODGaznFaHqxlFUcrV36QeLNC65MoCV2y6HZ8=";
}; # };
dontUnpack = true; # dontUnpack = true;
buildPhase = '' # buildPhase = ''
mkdir -p $out/bin # mkdir -p $out/bin
cp $src $out/bin/OCCT # cp $src $out/bin/OCCT
chmod +x $out/bin/OCCT # chmod +x $out/bin/OCCT
''; # '';
installPhase = "true"; # installPhase = "true";
}; # };
in in
{ {
imports = [ imports = [
@@ -157,6 +157,8 @@ in
}; };
}; };
programs.coolercontrol.enable = true;
# Time configuration # Time configuration
time = { time = {
hardwareClockInLocalTime = lib.mkDefault false; hardwareClockInLocalTime = lib.mkDefault false;