mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2024-11-15 05:13:10 +01:00
overlays: remove wdisplays
This commit is contained in:
parent
2bb6fa41e0
commit
33f39b3a15
|
@ -201,6 +201,17 @@
|
|||
cups
|
||||
agenix.packages.x86_64-linux.default
|
||||
];
|
||||
|
||||
services.mysql = {
|
||||
enable = true;
|
||||
package = pkgs.mariadb;
|
||||
ensureUsers = [
|
||||
{
|
||||
name = "user1";
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
programs.java.enable = true;
|
||||
programs.wireshark = {
|
||||
enable = true;
|
||||
|
|
|
@ -13,7 +13,7 @@ in
|
|||
# better desktop application name. "wpa_gui" kinda sucks
|
||||
postInstall = old.postInstall + ''
|
||||
|
||||
substituteInPlace $out/share/applications/wpa_gui.desktop --replace "Name=wpa_gui" "Name=Manage Wifi"
|
||||
substituteInPlace $out/share/applications/wpa_gui.desktop --replace "Name=wpa_gui" "Name=Wireless connections"
|
||||
'';
|
||||
});
|
||||
|
||||
|
@ -24,14 +24,6 @@ in
|
|||
'';
|
||||
});
|
||||
|
||||
wdisplays = prev.wdisplays.overrideAttrs (_: {
|
||||
# better desktop application name.
|
||||
postInstall = ''
|
||||
|
||||
substituteInPlace $out/share/applications/network.cycles.wdisplays.desktop --replace "Name=wdisplays" "Name=Manage Displays"
|
||||
'';
|
||||
});
|
||||
|
||||
pww = callPackage ../pkgs/pww { };
|
||||
|
||||
# fix pairing
|
||||
|
|
Loading…
Reference in a new issue