Working on install script, removed unneeded fonts, switching to Montserrat font family

This commit is contained in:
Tyler Kelley 2024-05-31 21:40:36 -05:00
parent 254fd96060
commit b735dca2ea
8 changed files with 13 additions and 19 deletions

View File

@ -10,8 +10,8 @@ ZaneyOS is a simple way of reproducing my configuration on any NixOS system. Thi
</div> </div>
> **This project has a [Wiki](https://zaney.org/zaneyos-2.0/). Find out how to use ZaneyOS here!** > **This project has a [Wiki](https://zaney.org/zaneyos-2.2/). Find out how to use ZaneyOS here!**
> **I have put a lot of effort into the [documentation](https://zaney.org/zaneyos-2.0/) so it should be accurate. However, please if you notice that something is wrong with it create an issue or reach out to me on Discord.** > **I have put a lot of effort into the [documentation](https://zaney.org/zaneyos-2.2/) so it should be accurate. However, please if you notice that something is wrong with it create an issue or reach out to me on Discord.**
#### 🍖 Requirements #### 🍖 Requirements
- You must be running on NixOS. - You must be running on NixOS.
@ -38,7 +38,7 @@ ZaneyOS is a simple way of reproducing my configuration on any NixOS system. Thi
<div align="center"> <div align="center">
Please do yourself a favor and [read the wiki](https://zaney.org/zaneyos-2.0/). Please do yourself a favor and [read the wiki](https://zaney.org/zaneyos-2.2/).
</div> </div>

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -80,12 +80,12 @@
name = "JetBrainsMono Nerd Font Mono"; name = "JetBrainsMono Nerd Font Mono";
}; };
sansSerif = { sansSerif = {
package = pkgs.dejavu_fonts; package = pkgs.montserrat;
name = "DejaVu Sans"; name = "Montserrat";
}; };
serif = { serif = {
package = pkgs.dejavu_fonts; package = pkgs.montserrat;
name = "DejaVu Serif"; name = "Montserrat";
}; };
sizes = { sizes = {
applications = 12; applications = 12;
@ -303,7 +303,6 @@
fonts = { fonts = {
packages = with pkgs; [ packages = with pkgs; [
(nerdfonts.override { fonts = [ "JetBrainsMono" ]; })
noto-fonts-emoji noto-fonts-emoji
noto-fonts-cjk noto-fonts-cjk
font-awesome font-awesome
@ -313,7 +312,7 @@
}; };
environment.variables = { environment.variables = {
ZANEYOS_VERSION = "2.1"; ZANEYOS_VERSION = "2.2";
ZANEYOS = "true"; ZANEYOS = "true";
}; };
@ -364,7 +363,10 @@
gvfs.enable = true; gvfs.enable = true;
openssh.enable = true; openssh.enable = true;
flatpak.enable = false; flatpak.enable = false;
printing.enable = true; printing = {
enable = true;
drivers = [ pkgs.hplipWithPlugin ];
};
gnome.gnome-keyring.enable = true; gnome.gnome-keyring.enable = true;
avahi = { avahi = {
enable = true; enable = true;

View File

@ -6,10 +6,6 @@
... ...
}: }:
let let
finecmdline = pkgs.vimUtils.buildVimPlugin {
name = "fine-cmdline";
src = inputs.fine-cmdline;
};
inherit (import ./variables.nix) gitUsername gitEmail; inherit (import ./variables.nix) gitUsername gitEmail;
in in
{ {
@ -41,10 +37,6 @@ in
source = ../../config/wlogout; source = ../../config/wlogout;
recursive = true; recursive = true;
}; };
home.file.".local/share/fonts" = {
source = ../../config/fonts;
recursive = true;
};
home.file.".config/ascii-neofetch".source = ../../config/ascii-neofetch; home.file.".config/ascii-neofetch".source = ../../config/ascii-neofetch;
home.file.".face.icon".source = ../../config/face.jpg; home.file.".face.icon".source = ../../config/face.jpg;
home.file.".config/face.jpg".source = ../../config/face.jpg; home.file.".config/face.jpg".source = ../../config/face.jpg;

View File

@ -84,4 +84,4 @@ echo "-----"
echo "ZaneyOS Has Been Setup" echo "ZaneyOS Has Been Setup"
echo "Please Edit Your Hosts Files" echo "Please Edit Your Hosts Files"
echo "Then Run: sudo nixos-rebuild switch --flake .#${hostName}" echo "Then Run: sudo nixos-rebuild switch --flake ~/zaneyos/#${hostName}"