mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2026-03-19 15:50:30 +01:00
Compare commits
No commits in common. "8a3163660ece8e9a057d79def8beb60f1b06d870" and "d7d0e73f0c694997ad14680c3361a1379da8ffce" have entirely different histories.
8a3163660e
...
d7d0e73f0c
2 changed files with 6 additions and 10 deletions
|
|
@ -108,7 +108,6 @@ in
|
|||
"mem_sleep_default=deep"
|
||||
"acpi_osi=\"!Windows 2020\"" # otherwise GPU does weird shit that makes the computer look like the RAM is broken
|
||||
];
|
||||
plymouth.enable = false;
|
||||
kernelModules = [ "acpi_call" ];
|
||||
kernelPackages = pkgs.linuxPackages_latest;
|
||||
loader = {
|
||||
|
|
|
|||
|
|
@ -8,7 +8,6 @@
|
|||
{
|
||||
nix = {
|
||||
settings = {
|
||||
download-buffer-size = 67108864; # Set buffer size to 64MB for large downloads
|
||||
allowed-users = [ "@wheel" ];
|
||||
auto-optimise-store = true;
|
||||
experimental-features = [
|
||||
|
|
@ -52,6 +51,12 @@
|
|||
|
||||
# powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
|
||||
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
i18n.supportedLocales = [
|
||||
"en_US.UTF-8/UTF-8"
|
||||
"ja_JP.UTF-8/UTF-8"
|
||||
];
|
||||
|
||||
# Font packages
|
||||
environment.systemPackages = with pkgs; [
|
||||
noto-fonts-cjk-sans
|
||||
|
|
@ -59,14 +64,6 @@
|
|||
ipaexfont
|
||||
];
|
||||
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
i18n.supportedLocales = [
|
||||
"en_US.UTF-8/UTF-8"
|
||||
"ja_JP.UTF-8/UTF-8"
|
||||
];
|
||||
time.timeZone = lib.mkDefault "Europe/Amsterdam";
|
||||
environment.variables = {
|
||||
LC_TIME = "C.UTF-8";
|
||||
};
|
||||
system.stateVersion = "24.05";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue