From caee38f56804987ed5126b64d8205303e4ca0183 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Sun, 23 Jun 2024 15:48:52 +0200 Subject: [PATCH] Update --- README.md | 2 +- docs/TODO.md | 1 - hosts/guest/configuration.nix | 1 + hosts/guest/variables.nix | 3 ++- 4 files changed, 4 insertions(+), 3 deletions(-) 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 }; }