1

Use toplevel config attrset in home/christoph/nixinator config

This commit is contained in:
2023-04-03 16:45:55 +02:00
parent 01897e2c43
commit b289573f96

View File

@ -15,6 +15,7 @@ rec {
../../modules ../../modules
]; ];
config = {
modules = { modules = {
audio = { audio = {
enable = true; enable = true;
@ -58,6 +59,10 @@ rec {
}; };
}; };
home.packages = with pkgs; [
quartus-prime-lite # Intel FPGA design software
];
# NOTE: This has been relocated here from the default config, because it forces en-US keyboard layout # NOTE: This has been relocated here from the default config, because it forces en-US keyboard layout
# The laptop needs de-DE... # The laptop needs de-DE...
# Chinese Input # Chinese Input
@ -68,4 +73,5 @@ rec {
fcitx5-chinese-addons fcitx5-chinese-addons
fcitx5-configtool # TODO: Remove this and set config through HomeManager fcitx5-configtool # TODO: Remove this and set config through HomeManager
]; ];
};
} }