Removed mircosoft fonts
This commit is contained in:
parent
516a7f606f
commit
e3aaa81a92
1 changed files with 33 additions and 36 deletions
|
|
@ -9,9 +9,9 @@
|
||||||
first-nixos-install,
|
first-nixos-install,
|
||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
}: {
|
}:
|
||||||
imports =
|
{
|
||||||
[
|
imports = [
|
||||||
inputs.sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
inputs.stylix.nixosModules.stylix
|
inputs.stylix.nixosModules.stylix
|
||||||
inputs.nixos-facter-modules.nixosModules.facter
|
inputs.nixos-facter-modules.nixosModules.facter
|
||||||
|
|
@ -27,15 +27,11 @@
|
||||||
./modules/sops
|
./modules/sops
|
||||||
./modules/emacs
|
./modules/emacs
|
||||||
./hosts/${hwconfig.hostname}
|
./hosts/${hwconfig.hostname}
|
||||||
]
|
] ++ lib.optional (hwconfig.useImpermanence) ./modules/impermanence;
|
||||||
++ lib.optional (hwconfig.useImpermanence) ./modules/impermanence;
|
|
||||||
facter.reportPath = ./hosts/${hwconfig.hostname}/facter.json;
|
facter.reportPath = ./hosts/${hwconfig.hostname}/facter.json;
|
||||||
kylekrein.services.autoUpgrade = {
|
kylekrein.services.autoUpgrade = {
|
||||||
enable = true;
|
enable = true;
|
||||||
pushUpdates =
|
pushUpdates = if hwconfig.hostname == "kylekrein-homepc" then true else false;
|
||||||
if hwconfig.hostname == "kylekrein-homepc"
|
|
||||||
then true
|
|
||||||
else false;
|
|
||||||
configDir = "/etc/nixos-config";
|
configDir = "/etc/nixos-config";
|
||||||
user = "root";
|
user = "root";
|
||||||
};
|
};
|
||||||
|
|
@ -48,10 +44,7 @@
|
||||||
};
|
};
|
||||||
loader = {
|
loader = {
|
||||||
systemd-boot.enable = true;
|
systemd-boot.enable = true;
|
||||||
efi.canTouchEfiVariables =
|
efi.canTouchEfiVariables = if hwconfig.hostname != "kylekrein-mac" then true else false;
|
||||||
if hwconfig.hostname != "kylekrein-mac"
|
|
||||||
then true
|
|
||||||
else false;
|
|
||||||
};
|
};
|
||||||
# Enable "Silent Boot"
|
# Enable "Silent Boot"
|
||||||
consoleLogLevel = 0;
|
consoleLogLevel = 0;
|
||||||
|
|
@ -226,10 +219,11 @@
|
||||||
fonts.packages = with pkgs; [
|
fonts.packages = with pkgs; [
|
||||||
nerd-fonts.jetbrains-mono
|
nerd-fonts.jetbrains-mono
|
||||||
font-awesome
|
font-awesome
|
||||||
hack-font
|
|
||||||
corefonts
|
|
||||||
nerd-fonts.symbols-only
|
nerd-fonts.symbols-only
|
||||||
vistafonts
|
hack-font
|
||||||
|
# microsoft fonts:
|
||||||
|
#corefonts
|
||||||
|
#vistafonts
|
||||||
];
|
];
|
||||||
environment.sessionVariables = {
|
environment.sessionVariables = {
|
||||||
NIXOS_OZONE_WL = "1";
|
NIXOS_OZONE_WL = "1";
|
||||||
|
|
@ -377,7 +371,10 @@
|
||||||
|
|
||||||
nix = {
|
nix = {
|
||||||
settings = {
|
settings = {
|
||||||
experimental-features = ["nix-command" "flakes"];
|
experimental-features = [
|
||||||
|
"nix-command"
|
||||||
|
"flakes"
|
||||||
|
];
|
||||||
auto-optimise-store = true;
|
auto-optimise-store = true;
|
||||||
substituters = [
|
substituters = [
|
||||||
"https://hyprland.cachix.org"
|
"https://hyprland.cachix.org"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue