diff --git a/README.md b/README.md index e36d37c..8e1ffb6 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,9 @@ ZaneyOS is a way of reproducing my configuration on any NixOS system. This inclu +> [!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 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. diff --git a/config/home/files.nix b/config/home/files.nix index 089ed31..4526f72 100644 --- a/config/home/files.nix +++ b/config/home/files.nix @@ -8,6 +8,7 @@ home.file.".face.icon".source = ./files/face.jpg; # For SDDM home.file.".config/rofi/rofi.jpg".source = ./files/rofi.jpg; 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.".local/share/fonts" = { source = ./files/fonts; diff --git a/config/home/files/media/swaylock-bg.jpg b/config/home/files/media/swaylock-bg.jpg new file mode 100644 index 0000000..79a13fb Binary files /dev/null and b/config/home/files/media/swaylock-bg.jpg differ diff --git a/config/home/swaylock.nix b/config/home/swaylock.nix index ef3d2dd..61da200 100644 --- a/config/home/swaylock.nix +++ b/config/home/swaylock.nix @@ -9,7 +9,7 @@ in { ignore-empty-password indicator-thickness=15 indicator-radius=150 - image=~/Pictures/Wallpapers/Gangsta-Hoodie.jpeg + image=~/.config/swaylock-bg.jpg ring-color=${palette.base0D} key-hl-color=${palette.base0F} line-color=00000000 diff --git a/config/system/persistence.nix b/config/system/persistence.nix index ec4d695..3e1804b 100644 --- a/config/system/persistence.nix +++ b/config/system/persistence.nix @@ -1,5 +1,8 @@ { config, pkgs, lib, username, ... }: +let + inherit ( ../../options.nix ) username; +in { environment.persistence."/nix/persist" = { hideMounts = true; @@ -13,7 +16,7 @@ files = [ # "/etc/machine-id" ]; - users.zaney = { + users.${username} = { directories = [ "Downloads" "Music"