Playing with README & fix username in persistence file

This commit is contained in:
Tyler Kelley 2024-02-19 01:30:51 -06:00
parent bad2afc013
commit 0409e3a16f
5 changed files with 9 additions and 2 deletions

View File

@ -8,6 +8,9 @@ ZaneyOS is a way of reproducing my configuration on any NixOS system. This inclu
</div> </div>
> [!IMPORTANT]
> This project has a [Wiki](https://gitlab.com/Zaney/zaneyos/-/wikis/home). Please read it to find out information on subjects that you may need to learn more about!
## READ THE WIKI ## READ THE WIKI
If you want to learn more about my system, [this project has a Wiki](https://gitlab.com/Zaney/zaneyos/-/wikis/home) that explains a ton. It even explains what NixOS is why you may want to choose it and so much more. If you want to learn more about my system, [this project has a Wiki](https://gitlab.com/Zaney/zaneyos/-/wikis/home) that explains a ton. It even explains what NixOS is why you may want to choose it and so much more.

View File

@ -8,6 +8,7 @@
home.file.".face.icon".source = ./files/face.jpg; # For SDDM home.file.".face.icon".source = ./files/face.jpg; # For SDDM
home.file.".config/rofi/rofi.jpg".source = ./files/rofi.jpg; home.file.".config/rofi/rofi.jpg".source = ./files/rofi.jpg;
home.file.".config/starship.toml".source = ./files/starship.toml; home.file.".config/starship.toml".source = ./files/starship.toml;
home.file.".config/swaylock-bg.jpg".source = ./files/media/swaylock-bg.jpg;
home.file.".config/ascii-neofetch".source = ./files/ascii-neofetch; home.file.".config/ascii-neofetch".source = ./files/ascii-neofetch;
home.file.".local/share/fonts" = { home.file.".local/share/fonts" = {
source = ./files/fonts; source = ./files/fonts;

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 MiB

View File

@ -9,7 +9,7 @@ in {
ignore-empty-password ignore-empty-password
indicator-thickness=15 indicator-thickness=15
indicator-radius=150 indicator-radius=150
image=~/Pictures/Wallpapers/Gangsta-Hoodie.jpeg image=~/.config/swaylock-bg.jpg
ring-color=${palette.base0D} ring-color=${palette.base0D}
key-hl-color=${palette.base0F} key-hl-color=${palette.base0F}
line-color=00000000 line-color=00000000

View File

@ -1,5 +1,8 @@
{ config, pkgs, lib, username, ... }: { config, pkgs, lib, username, ... }:
let
inherit ( ../../options.nix ) username;
in
{ {
environment.persistence."/nix/persist" = { environment.persistence."/nix/persist" = {
hideMounts = true; hideMounts = true;
@ -13,7 +16,7 @@
files = [ files = [
# "/etc/machine-id" # "/etc/machine-id"
]; ];
users.zaney = { users.${username} = {
directories = [ directories = [
"Downloads" "Downloads"
"Music" "Music"