Removed mircosoft fonts

This commit is contained in:
Aleksandr Lebedev 2025-01-26 17:17:41 +01:00
parent 516a7f606f
commit e3aaa81a92

View file

@ -9,9 +9,9 @@
first-nixos-install,
inputs,
...
}: {
imports =
[
}:
{
imports = [
inputs.sops-nix.nixosModules.sops
inputs.stylix.nixosModules.stylix
inputs.nixos-facter-modules.nixosModules.facter
@ -27,15 +27,11 @@
./modules/sops
./modules/emacs
./hosts/${hwconfig.hostname}
]
++ lib.optional (hwconfig.useImpermanence) ./modules/impermanence;
] ++ lib.optional (hwconfig.useImpermanence) ./modules/impermanence;
facter.reportPath = ./hosts/${hwconfig.hostname}/facter.json;
kylekrein.services.autoUpgrade = {
enable = true;
pushUpdates =
if hwconfig.hostname == "kylekrein-homepc"
then true
else false;
pushUpdates = if hwconfig.hostname == "kylekrein-homepc" then true else false;
configDir = "/etc/nixos-config";
user = "root";
};
@ -48,10 +44,7 @@
};
loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables =
if hwconfig.hostname != "kylekrein-mac"
then true
else false;
efi.canTouchEfiVariables = if hwconfig.hostname != "kylekrein-mac" then true else false;
};
# Enable "Silent Boot"
consoleLogLevel = 0;
@ -226,10 +219,11 @@
fonts.packages = with pkgs; [
nerd-fonts.jetbrains-mono
font-awesome
hack-font
corefonts
nerd-fonts.symbols-only
vistafonts
hack-font
# microsoft fonts:
#corefonts
#vistafonts
];
environment.sessionVariables = {
NIXOS_OZONE_WL = "1";
@ -377,7 +371,10 @@
nix = {
settings = {
experimental-features = ["nix-command" "flakes"];
experimental-features = [
"nix-command"
"flakes"
];
auto-optimise-store = true;
substituters = [
"https://hyprland.cachix.org"