Compare commits
3 commits
87064abe0e
...
a0b9cde065
Author | SHA1 | Date | |
---|---|---|---|
a0b9cde065 | |||
f0b067acd0 | |||
5d46b2e28c |
5 changed files with 39 additions and 0 deletions
|
@ -18,6 +18,11 @@ in {
|
||||||
width = 2256;
|
width = 2256;
|
||||||
height = 1504;
|
height = 1504;
|
||||||
scale = 1.5;
|
scale = 1.5;
|
||||||
|
|
||||||
|
# BUG: Phoenix support not currently functional
|
||||||
|
# https://github.com/Cryolitia/ryzen_smu/issues/1
|
||||||
|
#// programs.ryzenadj.enable = true;
|
||||||
|
|
||||||
settings.storage.mnt = ["myve"];
|
settings.storage.mnt = ["myve"];
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
|
|
16
options/custom/programs/ryzenadj.nix
Normal file
16
options/custom/programs/ryzenadj.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.custom.programs.ryzenadj;
|
||||||
|
in {
|
||||||
|
options.custom.programs.ryzenadj.enable = mkOption {default = false;};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
environment.systemPackages = with pkgs; [ryzenadj];
|
||||||
|
hardware.cpu.amd.ryzen-smu.enable = true;
|
||||||
|
};
|
||||||
|
}
|
|
@ -46,6 +46,7 @@ with lib; {
|
||||||
#// swayidle.enable = true;
|
#// swayidle.enable = true;
|
||||||
swaync.enable = true;
|
swaync.enable = true;
|
||||||
swayosd.enable = true;
|
swayosd.enable = true;
|
||||||
|
usbmuxd.enable = true;
|
||||||
#// xembed-sni-proxy.enable = true;
|
#// xembed-sni-proxy.enable = true;
|
||||||
#// zerotierone.enable = true;
|
#// zerotierone.enable = true;
|
||||||
})
|
})
|
||||||
|
|
16
options/custom/services/usbmuxd.nix
Normal file
16
options/custom/services/usbmuxd.nix
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
with lib; let
|
||||||
|
cfg = config.custom.services.usbmuxd;
|
||||||
|
in {
|
||||||
|
options.custom.services.usbmuxd.enable = mkOption {default = false;};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
services.usbmuxd.enable = true;
|
||||||
|
environment.systemPackages = with pkgs; [libimobiledevice];
|
||||||
|
};
|
||||||
|
}
|
|
@ -35,6 +35,7 @@ in {
|
||||||
progress # Coreutils progress viewer
|
progress # Coreutils progress viewer
|
||||||
rclone # File sync
|
rclone # File sync
|
||||||
stress # CPU stress tester
|
stress # CPU stress tester
|
||||||
|
testdisk # Data recovery tool
|
||||||
trashy # CLI trash
|
trashy # CLI trash
|
||||||
waypipe # Wayland proxy
|
waypipe # Wayland proxy
|
||||||
wl-clipboard # Wayland clipboard
|
wl-clipboard # Wayland clipboard
|
||||||
|
|
Loading…
Add table
Reference in a new issue