imported laptop configs

This commit is contained in:
2026-02-13 19:15:24 -06:00
parent 7d23fc780c
commit 7dd1c8d2d4
9 changed files with 373 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
{self, inputs, ...}: {
flake.nixosModules.applications = { pkgs, ... }: {
environment.systemPackages = with pkgs; [
libreoffice-fresh
];
};
}

View File

@@ -0,0 +1,14 @@
{self, inputs, ...}: {
flake.nixosModules.fonts = { pkgs, ... }: {
fonts.packages = with pkgs; [
nerd-fonts.jetbrains-mono
nerd-fonts.noto
corefonts
unifont
font-awesome
noto-fonts
noto-fonts-cjk-sans
noto-fonts-cjk-serif
];
};
}

View File

@@ -0,0 +1,26 @@
{self, inputs, ...}: {
flake.nixosModules.localization = { pkgs, ... }: {
time.timeZone = "America/Chicago";
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
LC_ADDRESS = "en_US.UTF-8";
LC_IDENTIFICATION = "en_US.UTF-8";
LC_MEASUREMENT = "en_US.UTF-8";
LC_MONETARY = "en_US.UTF-8";
LC_NAME = "en_US.UTF-8";
LC_NUMERIC = "en_US.UTF-8";
LC_PAPER = "en_US.UTF-8";
LC_TELEPHONE = "en_US.UTF-8";
LC_TIME = "en_US.UTF-8";
};
services.xserver.xkb = {
layout = "us";
variant = "";
};
};
}