diff --git a/README.md b/README.md index abaefcc..96e413f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ [//]: # (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.) [//]: # (Author: Hadi) -[//]: # (Date: 06/19/24) +[//]: # (Date: 06/23/24)
diff --git a/docs/TODO.md b/docs/TODO.md index d1cc3b8..f2ae1dd 100644 --- a/docs/TODO.md +++ b/docs/TODO.md @@ -26,6 +26,5 @@ feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md)) - [ ] Server - [ ] Bitcoin-git - [ ] server fetch - - [ ] Remote push - [ ] Ntfy auth file - [ ] Fix adguard diff --git a/hosts/guest/configuration.nix b/hosts/guest/configuration.nix index c3a6be7..cb404a3 100644 --- a/hosts/guest/configuration.nix +++ b/hosts/guest/configuration.nix @@ -47,6 +47,7 @@ }; services = { + tailscale.enable = config.var.tailscale; xserver = { enable = true; xkb.layout = config.var.keyboardLayout; diff --git a/hosts/guest/variables.nix b/hosts/guest/variables.nix index ffa0a2d..5240090 100644 --- a/hosts/guest/variables.nix +++ b/hosts/guest/variables.nix @@ -26,7 +26,8 @@ sops = false; # change the nvim's obsidian configuration if you want to enable that: obsidian = false; + tailscale = false; - theme = import ../themes/nixy.nix; # select your theme here + theme = import ../themes/catppuccin.nix; # select your theme here }; }