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>
> **This project has a [Wiki](https://zaney.org/zaneyos-2.0/). 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.**
> **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.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
- 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">
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>

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

View File

@ -6,10 +6,6 @@
...
}:
let
finecmdline = pkgs.vimUtils.buildVimPlugin {
name = "fine-cmdline";
src = inputs.fine-cmdline;
};
inherit (import ./variables.nix) gitUsername gitEmail;
in
{
@ -41,10 +37,6 @@ in
source = ../../config/wlogout;
recursive = true;
};
home.file.".local/share/fonts" = {
source = ../../config/fonts;
recursive = true;
};
home.file.".config/ascii-neofetch".source = ../../config/ascii-neofetch;
home.file.".face.icon".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 "Please Edit Your Hosts Files"
echo "Then Run: sudo nixos-rebuild switch --flake .#${hostName}"
echo "Then Run: sudo nixos-rebuild switch --flake ~/zaneyos/#${hostName}"