Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ This repository contains a complete NixOS configuration featuring:
### Prerequisites
- NixOS installed with flakes enabled
- Git for cloning this repository
- Ensure `/usr/share/wallpaper/` exists and contains all wallpapers you want to use for theming
Copy link

Copilot AI Jul 22, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The documentation should include instructions on how to create this directory and set proper permissions, as users may not have write access to /usr/share/ by default.

Suggested change
- Ensure `/usr/share/wallpaper/` exists and contains all wallpapers you want to use for theming
- Ensure `/usr/share/wallpaper/` exists and contains all wallpapers you want to use for theming. If the directory does not exist, create it and set the appropriate permissions:
```bash
sudo mkdir -p /usr/share/wallpaper
sudo chmod 755 /usr/share/wallpaper

Copilot uses AI. Check for mistakes.

### Installation

Expand All @@ -37,6 +38,9 @@ chmod +x deploy.sh
./deploy.sh -up
```

### Changing Theme
To change the active theme, edit `flake.nix` and set `activeTheme` to your desired theme (e.g., `themes.mytheme`).

## Architecture

### Flake Structure
Expand Down Expand Up @@ -127,6 +131,23 @@ sudo nix-store --optimize

## Customization

### Adding New Designs (Themes)

To add a new theme:
1. Add your color scheme YAML file to `modules/nixos/themes/` (e.g., `mytheme.yaml`).
2. Add your wallpaper image to `/usr/share/wallpaper/` (e.g., `mytheme.jpg`).
3. Edit `modules/nixos/themes/defaults.nix` to include your new theme:
```nix
mytheme = {
colorScheme = ./mytheme.yaml;
wallpaper = "mytheme.jpg";
};
```

### Changing Theme

To change the active theme, edit `flake.nix` and set `activeTheme` to your desired theme (e.g., `themes.mytheme`).

### Adding New Modules

1. Create module file in appropriate directory:
Expand Down
Loading
Loading