1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-31 20:17:45 +00:00

Add wifi alias

This commit is contained in:
RGBCube 2023-12-26 11:43:40 +03:00
parent 608f0227ac
commit 4feb8efb85
No known key found for this signature in database

View file

@ -1,7 +1,11 @@
{ ulib, ... }: with ulib;
{ ulib, ... }: with ulib; merge
systemConfiguration {
(systemConfiguration {
networking.networkmanager = enabled {};
users.extraGroups.networkmanager.members = [ "nixos" ];
}
})
(homeConfiguration {
programs.nushell.shellAliases.wifi = "nmcli dev wifi show-password";
})