more changes
This commit is contained in:
parent
4adf705a13
commit
70641598f9
8 changed files with 4 additions and 14 deletions
0
modules/system/hardware/cpu/amd.nix
Normal file
0
modules/system/hardware/cpu/amd.nix
Normal file
0
modules/system/hardware/cpu/default.nix
Normal file
0
modules/system/hardware/cpu/default.nix
Normal file
0
modules/system/hardware/cpu/intel.nix
Normal file
0
modules/system/hardware/cpu/intel.nix
Normal file
0
modules/system/hardware/gpu/amd.nix
Normal file
0
modules/system/hardware/gpu/amd.nix
Normal file
0
modules/system/hardware/gpu/default.nix
Normal file
0
modules/system/hardware/gpu/default.nix
Normal file
0
modules/system/hardware/gpu/nvidia.nix
Normal file
0
modules/system/hardware/gpu/nvidia.nix
Normal file
|
@ -1,8 +1,7 @@
|
||||||
{
|
{
|
||||||
services.xserver = {
|
services.xserver = {
|
||||||
xkb.layout = "de,us";
|
xkb.layout = "de,us";
|
||||||
# xkbVariant = ",cmk_ed_dh";
|
xkbVariant = ",colemak_dh_wide";
|
||||||
# xkbModel = ",pc105awide";
|
xkbOptions = "grp:rctrl_rshift_toggle";
|
||||||
# xkbOptions = ",misc:extend,lv5:caps_switch_lock,compose:menu";
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,14 +8,10 @@
|
||||||
# <https://nixos.org/manual/nixpkgs/unstable/#chap-packageconfig>
|
# <https://nixos.org/manual/nixpkgs/unstable/#chap-packageconfig>
|
||||||
hostPlatform = "x86_64-linux";
|
hostPlatform = "x86_64-linux";
|
||||||
config = {
|
config = {
|
||||||
# Allow broken packages to be built. Setting this to false means packages
|
# Disallow broken packages to be built. allowBroken = false;
|
||||||
# will refuse to evaluate sometimes, but only if they have been marked as
|
|
||||||
# broken for a specific reason. At that point we can either try to solve
|
|
||||||
# the breakage, or get rid of the package entirely.
|
|
||||||
allowBroken = false;
|
|
||||||
allowUnsupportedSystem = true;
|
allowUnsupportedSystem = true;
|
||||||
|
|
||||||
# Allow unfree packages since it's sadly necessary
|
# Allow unfree packages
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
|
|
||||||
# Default to none, add more as necessary. This is usually where
|
# Default to none, add more as necessary. This is usually where
|
||||||
|
@ -28,11 +24,6 @@
|
||||||
# explicit naming conventions, i.e., no aliases.
|
# explicit naming conventions, i.e., no aliases.
|
||||||
allowAliases = false;
|
allowAliases = false;
|
||||||
|
|
||||||
# Enable parallel building by default. This, in theory, should speed up building
|
|
||||||
# derivations, especially rust ones. However setting this to true causes a mass rebuild
|
|
||||||
# of the *entire* system closure, so it must be handled with proper care.
|
|
||||||
enableParallelBuildingByDefault = false;
|
|
||||||
|
|
||||||
# List of derivation warnings to display while rebuilding.
|
# List of derivation warnings to display while rebuilding.
|
||||||
# See: <https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/check-meta.nix>
|
# See: <https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/check-meta.nix>
|
||||||
# NOTE: "maintainerless" can be added to emit warnings
|
# NOTE: "maintainerless" can be added to emit warnings
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue