imported laptop configs
This commit is contained in:
7
modules/nixosModules/applications.nix
Normal file
7
modules/nixosModules/applications.nix
Normal file
@@ -0,0 +1,7 @@
|
||||
{self, inputs, ...}: {
|
||||
flake.nixosModules.applications = { pkgs, ... }: {
|
||||
environment.systemPackages = with pkgs; [
|
||||
libreoffice-fresh
|
||||
];
|
||||
};
|
||||
}
|
||||
14
modules/nixosModules/fonts.nix
Normal file
14
modules/nixosModules/fonts.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
||||
26
modules/nixosModules/localization.nix
Normal file
26
modules/nixosModules/localization.nix
Normal 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 = "";
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user