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
|
cups
|
||||||
agenix.packages.x86_64-linux.default
|
agenix.packages.x86_64-linux.default
|
||||||
];
|
];
|
||||||
|
|
||||||
|
services.mysql = {
|
||||||
|
enable = true;
|
||||||
|
package = pkgs.mariadb;
|
||||||
|
ensureUsers = [
|
||||||
|
{
|
||||||
|
name = "user1";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
programs.java.enable = true;
|
programs.java.enable = true;
|
||||||
programs.wireshark = {
|
programs.wireshark = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -13,7 +13,7 @@ in
|
||||||
# better desktop application name. "wpa_gui" kinda sucks
|
# better desktop application name. "wpa_gui" kinda sucks
|
||||||
postInstall = old.postInstall + ''
|
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 { };
|
pww = callPackage ../pkgs/pww { };
|
||||||
|
|
||||||
# fix pairing
|
# fix pairing
|
||||||
|
|
Loading…
Reference in a new issue