This commit is contained in:
Hadi 2024-06-23 15:48:52 +02:00
parent 487d81ff86
commit caee38f568
4 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
[//]: # (Title: Nixy) [//]: # (Title: Nixy)
[//]: # (Description: Nixy is a Hyprland NixOS configuration with home-manager, secrets and custom theming all in one place. It's a simple way to manage your system configuration and dotfiles.) [//]: # (Description: Nixy is a Hyprland NixOS configuration with home-manager, secrets and custom theming all in one place. It's a simple way to manage your system configuration and dotfiles.)
[//]: # (Author: Hadi) [//]: # (Author: Hadi)
[//]: # (Date: 06/19/24) [//]: # (Date: 06/23/24)
<div align="center"> <div align="center">
<img src="https://raw.githubusercontent.com/anotherhadi/nixy/main/docs/src/logo.png" width="100px" /> <img src="https://raw.githubusercontent.com/anotherhadi/nixy/main/docs/src/logo.png" width="100px" />

View File

@ -26,6 +26,5 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
- [ ] Server - [ ] Server
- [ ] Bitcoin-git - [ ] Bitcoin-git
- [ ] server fetch - [ ] server fetch
- [ ] Remote push
- [ ] Ntfy auth file - [ ] Ntfy auth file
- [ ] Fix adguard - [ ] Fix adguard

View File

@ -47,6 +47,7 @@
}; };
services = { services = {
tailscale.enable = config.var.tailscale;
xserver = { xserver = {
enable = true; enable = true;
xkb.layout = config.var.keyboardLayout; xkb.layout = config.var.keyboardLayout;

View File

@ -26,7 +26,8 @@
sops = false; sops = false;
# change the nvim's obsidian configuration if you want to enable that: # change the nvim's obsidian configuration if you want to enable that:
obsidian = false; obsidian = false;
tailscale = false;
theme = import ../themes/nixy.nix; # select your theme here theme = import ../themes/catppuccin.nix; # select your theme here
}; };
} }