finally use xserver.extraLayouts correctly

This commit is contained in:
2021-06-17 18:47:38 +05:30
parent d32d386248
commit ee5cd59841
13 changed files with 65 additions and 51 deletions

View File

@@ -24,6 +24,6 @@
configurationName = "nixbruh";
};
};
kernelParams = [ "nvidia-drm.modeset=1" "intel_pstate=active"];
kernelParams = [ "nvidia-drm.modeset=1" "intel_pstate=active" ];
};
}

View File

@@ -69,6 +69,7 @@
};
dconf.enable = true;
adb.enable = true;
light.enable = true;
};
nix = {
package = pkgs.nixUnstable;

View File

@@ -51,7 +51,10 @@
];
};
};
btrfs.autoScrub.enable = true;
udev.extraRules = ''
ACTION=="add|change", KERNEL=="sda", ATTR{queue/rotational}=="0", ATTR{queue/scheduler}="bfq"
'';
};
systemd.services = {
tor.wantedBy = lib.mkForce [];

View File

@@ -32,6 +32,12 @@
isNormalUser = true;
shell = pkgs.zsh;
home = "/home/natto";
extraGroups = [ "wheel" "adbusers" ];
extraGroups = [ "wheel" "adbusers" "video" ];
};
i18n.inputMethod = {
# enabled = "fcitx5";
# fcitx5.addons = with pkgs; [ fcitx5-m17n fcitx5-mozc ];
enabled = "fcitx";
fcitx.engines = with pkgs.fcitx-engines; [ m17n mozc ];
};
}