feat: random wifi mac
This commit is contained in:
parent
a5317122d0
commit
ec0e5f1c25
3 changed files with 8 additions and 4 deletions
|
@ -89,7 +89,7 @@
|
||||||
extra-substituters = [
|
extra-substituters = [
|
||||||
"https://cache.nixos.org/"
|
"https://cache.nixos.org/"
|
||||||
"https://nix-community.cachix.org"
|
"https://nix-community.cachix.org"
|
||||||
"https://nix.h.lyte.dev"
|
# "https://nix.h.lyte.dev"
|
||||||
|
|
||||||
# since we are forcing most inputs to follow our nixpkgs, we don't bother settings up caches and just use our own
|
# since we are forcing most inputs to follow our nixpkgs, we don't bother settings up caches and just use our own
|
||||||
# "https://helix.cachix.org"
|
# "https://helix.cachix.org"
|
||||||
|
@ -99,7 +99,7 @@
|
||||||
extra-trusted-public-keys = [
|
extra-trusted-public-keys = [
|
||||||
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
|
||||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||||
"h.lyte.dev-2:te9xK/GcWPA/5aXav8+e5RHImKYMug8hIIbhHsKPN0M="
|
# "h.lyte.dev-2:te9xK/GcWPA/5aXav8+e5RHImKYMug8hIIbhHsKPN0M="
|
||||||
|
|
||||||
# "helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="
|
# "helix.cachix.org-1:ejp9KQpR1FBI2onstMQ34yogDm4OgU2ru6lIwPvuCVs="
|
||||||
# "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
# "hyprland.cachix.org-1:a7pgxzMz7+chwVL3/pzj6jIBMioiJM7ypFP8PwtkuGc="
|
||||||
|
|
|
@ -440,7 +440,6 @@ in
|
||||||
screensaver = [ "<Shift><Control><Super>l" ]; # lock screen
|
screensaver = [ "<Shift><Control><Super>l" ]; # lock screen
|
||||||
mic-mute = [ "<Shift><Super>v" ];
|
mic-mute = [ "<Shift><Super>v" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
"org/gnome/desktop/peripherals/touchpad" = {
|
"org/gnome/desktop/peripherals/touchpad" = {
|
||||||
disable-while-typing = false;
|
disable-while-typing = false;
|
||||||
};
|
};
|
||||||
|
|
|
@ -33,7 +33,12 @@
|
||||||
framework-13-7040-amd
|
framework-13-7040-amd
|
||||||
];
|
];
|
||||||
|
|
||||||
networking.networkmanager.wifi.powersave = false;
|
networking.networkmanager = {
|
||||||
|
wifi = {
|
||||||
|
macAddress = "random";
|
||||||
|
powersave = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
hardware = {
|
hardware = {
|
||||||
framework.amd-7040.preventWakeOnAC = true;
|
framework.amd-7040.preventWakeOnAC = true;
|
||||||
bluetooth = {
|
bluetooth = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue