bugs
This commit is contained in:
parent
223ee9efd2
commit
16770c5d67
|
@ -10,7 +10,7 @@ in
|
|||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
environment.systemPackages = [
|
||||
environment.systemPackages = with pkgs; [
|
||||
neofetch
|
||||
|
||||
fd
|
||||
|
|
|
@ -26,7 +26,7 @@ in
|
|||
|
||||
fonts.packages = with pkgs;
|
||||
[
|
||||
(nerdfonts.override {fonts = ["Jetbrains Mono" "CodeNewRoman" "NerdFontsSymbolsOnly"];})
|
||||
(nerdfonts.override { fonts = [ "Jetbrains Mono" "CodeNewRoman" "NerdFontsSymbolsOnly" ]; })
|
||||
font-awesome
|
||||
powerline-fonts
|
||||
powerline-symbols
|
||||
|
|
|
@ -1,11 +1,7 @@
|
|||
{ options
|
||||
, config
|
||||
, pkgs
|
||||
, lib
|
||||
, ...
|
||||
}:
|
||||
{ options, config, pkgs, lib, ... }:
|
||||
with lib;
|
||||
with lib.wyrdgard; let
|
||||
with lib.wyrdgard;
|
||||
let
|
||||
cfg = config.wyrdgard.system.locale;
|
||||
in
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ options , config , lib , ... }:
|
||||
{ options, config, lib, ... }:
|
||||
with lib;
|
||||
with lib.wyrdgard;
|
||||
let
|
||||
|
@ -13,7 +13,7 @@ in
|
|||
console.useXkbConfig = true;
|
||||
services.xserver = {
|
||||
xkb.layout = "us";
|
||||
variant = "";
|
||||
xkb.variant = "";
|
||||
xkbOptions = "caps:escape";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -26,7 +26,7 @@ with lib.wyrdgard;
|
|||
package = config.boot.kernelPackages.nvidiaPackages.beta;
|
||||
};
|
||||
|
||||
environment.pathsToLink = ["/libexec"];
|
||||
environment.pathsToLink = [ "/libexec" ];
|
||||
|
||||
services.xserver.videoDrivers = [ "nvidia" ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue