change corectrl config
This commit is contained in:
parent
21adf20192
commit
09d32772f9
@ -37,9 +37,8 @@
|
|||||||
startupApplications = with config.defaultApplications; [
|
startupApplications = with config.defaultApplications; [
|
||||||
messenger.cmd
|
messenger.cmd
|
||||||
"${pkgs.keepassxc}/bin/keepassxc --keyfile=/home/alukard/.passwords.key /home/alukard/nixos-config/misc/Passwords.kdbx"
|
"${pkgs.keepassxc}/bin/keepassxc --keyfile=/home/alukard/.passwords.key /home/alukard/nixos-config/misc/Passwords.kdbx"
|
||||||
"${term.cmd} spt"
|
"${term.cmd} -e spt"
|
||||||
] ++ lib.optionals (config.deviceSpecific.devInfo.gpu.vendor == "amd") [
|
"${pkgs.feh}/bin/feh --bg-fill $HOME/nixos-config/misc/wallpaper"
|
||||||
"${pkgs.corectrl}/bin/corectrl"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
|
7
modules/applications/corectrl.nix
Normal file
7
modules/applications/corectrl.nix
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
{ pkgs, lib, config, ... }:
|
||||||
|
with config.deviceSpecific; {
|
||||||
|
config = lib.mkIf (devInfo.gpu.vendor == "amd") {
|
||||||
|
programs.corectrl.enable = true;
|
||||||
|
startupApplications = [ "${pkgs.corectrl}/bin/corectrl" ];
|
||||||
|
};
|
||||||
|
}
|
@ -1,7 +1,6 @@
|
|||||||
{ pkgs, config, lib, ... }:
|
{ pkgs, config, lib, ... }:
|
||||||
with config.deviceSpecific; {
|
with config.deviceSpecific; {
|
||||||
programs.adb.enable = true;
|
programs.adb.enable = true;
|
||||||
programs.corectrl.enable = lib.mkIf (devInfo.gpu.vendor == "amd") true;
|
|
||||||
|
|
||||||
home-manager.users.alukard.home.packages = with pkgs; [
|
home-manager.users.alukard.home.packages = with pkgs; [
|
||||||
# cli
|
# cli
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
xserver
|
xserver
|
||||||
|
|
||||||
alacritty
|
alacritty
|
||||||
|
corectrl
|
||||||
kitty
|
kitty
|
||||||
mopidy
|
mopidy
|
||||||
mpv
|
mpv
|
||||||
|
Loading…
x
Reference in New Issue
Block a user