finally use xserver.extraLayouts correctly
This commit is contained in:
@@ -24,6 +24,6 @@
|
||||
configurationName = "nixbruh";
|
||||
};
|
||||
};
|
||||
kernelParams = [ "nvidia-drm.modeset=1" "intel_pstate=active"];
|
||||
kernelParams = [ "nvidia-drm.modeset=1" "intel_pstate=active" ];
|
||||
};
|
||||
}
|
||||
|
@@ -69,6 +69,7 @@
|
||||
};
|
||||
dconf.enable = true;
|
||||
adb.enable = true;
|
||||
light.enable = true;
|
||||
};
|
||||
nix = {
|
||||
package = pkgs.nixUnstable;
|
||||
|
@@ -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 [];
|
||||
|
@@ -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 ];
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user