Compare commits
4 commits
c47c084a55
...
74d04c4ed4
Author | SHA1 | Date | |
---|---|---|---|
Antoine Martin | 74d04c4ed4 | ||
Antoine Martin | 3d10eef3ac | ||
Antoine Martin | 2ec0602006 | ||
Antoine Martin | 6e8253fd89 |
|
@ -93,6 +93,8 @@
|
||||||
inherit system;
|
inherit system;
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
power-profiles-daemon = self.unstable.power-profiles-daemon;
|
||||||
})
|
})
|
||||||
|
|
||||||
agenix.overlays.default
|
agenix.overlays.default
|
||||||
|
|
|
@ -18,7 +18,10 @@
|
||||||
|
|
||||||
hardware.amdgpu.opencl = false;
|
hardware.amdgpu.opencl = false;
|
||||||
|
|
||||||
boot.kernelPackages = pkgs.linuxPackages_6_6;
|
boot.kernelPackages = pkgs.linuxPackages_6_7;
|
||||||
|
# Set Wi-Fi regulatory domain. Currently always set to '00' (world), and could
|
||||||
|
# lead to bad Wi-Fi performance
|
||||||
|
boot.kernelParams = ["cfg80211.ieee80211_regdom=FR"];
|
||||||
|
|
||||||
# Use the systemd-boot EFI boot loader.
|
# Use the systemd-boot EFI boot loader.
|
||||||
boot.loader.systemd-boot = {
|
boot.loader.systemd-boot = {
|
||||||
|
@ -41,7 +44,10 @@
|
||||||
networking.domain = "alarsyo.net";
|
networking.domain = "alarsyo.net";
|
||||||
# Pick only one of the below networking options.
|
# Pick only one of the below networking options.
|
||||||
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
|
||||||
networking.networkmanager.enable = true; # Easiest to use and most distros use this by default.
|
networking.networkmanager = {
|
||||||
|
enable = true;
|
||||||
|
wifi.powersave = true;
|
||||||
|
}
|
||||||
|
|
||||||
# Set your time zone.
|
# Set your time zone.
|
||||||
time.timeZone = "Europe/Paris";
|
time.timeZone = "Europe/Paris";
|
||||||
|
|
Loading…
Reference in a new issue