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