From 7817196220e7f1e2f2c127c0eeb286cb07dec8be Mon Sep 17 00:00:00 2001 From: shinya Date: Sun, 2 Nov 2025 13:13:46 +0100 Subject: [PATCH] Updated README --- README.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0b44e37..f096b20 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ## Installation -### Using VM or ISO +### Using VM or ISO package #### QEMU VM @@ -12,7 +12,7 @@ #### Live ISO -- If you would like to have this image on your flashdisk and live boot it you can get .iso file using nix run git+https://gitea.homework.zip/shinya/Windows-Theme-Flake#live-iso +- If you would like to have this image on your flashdisk and live boot it you can get .iso file using `nix run git+https://gitea.homework.zip/shinya/Windows-Theme-Flake#live-iso` ### Using Flakes @@ -60,16 +60,22 @@ Add the NixOS module to your system configuration: ```nix # Example configuration.nix -{ inputs, ... }: +{ inputs, windows-theme ... }: { imports = [ inputs.nixp-module.nixosModules.default ]; + # Don't forget to add home-manager module to your configuration + home-manager.sharedModules = [ + inputs.windows-theme.homeModules.default + ]; + nixp = { enable = true; # Enable Windows XP theme system-wide theme = { plymouth.enable = true; # Enable Windows XP boot screen + grub.enable = false; }; }; } @@ -81,7 +87,7 @@ Add the Home Manager module to your user configuration: ```nix # Example home-manager configuration -{ inputs, ... }: +{ inputs, windows-theme ... }: { imports = [ inputs.nixp-module.homeModules.default