Update
This commit is contained in:
parent
b90999d5b6
commit
73ac8d8188
53
docs/TODO.md
53
docs/TODO.md
@ -1,31 +1,30 @@
|
|||||||
# Todolist
|
# Todolist
|
||||||
|
|
||||||
feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
|
feel free to contribute <3 ([CONTRIBUTING.md](CONTRIBUTING.md))
|
||||||
|
|
||||||
- [ ] Nixy script v2 (with nixosConfiguration's name variable)
|
- [ ] Nixy script v2 (with nixosConfiguration's name variable)
|
||||||
- [ ] Installation script
|
- [ ] Installation script
|
||||||
- [ ] Themes
|
- [ ] Themes
|
||||||
- [ ] Upload new wallpapers
|
- [ ] Upload new wallpapers
|
||||||
- [ ] MacOS theme
|
- [ ] MacOS theme
|
||||||
- [ ] Make hyprcursor work
|
- [ ] Make hyprcursor work
|
||||||
- [ ] Homepage (web) v2
|
- [ ] Homepage (web) v2
|
||||||
- [ ] Compile the sveltejs project
|
- [ ] Compile the sveltejs project
|
||||||
- [ ] Different link on web/mobile (so it can open ios/android apps)
|
- [ ] Different link on web/mobile (so it can open ios/android apps)
|
||||||
- [ ] Test services ? (ping)
|
- [ ] Test services ? (ping)
|
||||||
- [ ] Manifest & favicon
|
- [ ] Manifest & favicon
|
||||||
- [ ] Nixvim
|
- [ ] Nixvim
|
||||||
- [ ] Nerdfont pluggins to search and paste in the code
|
- [ ] Nerdfont pluggins to search and paste in the code
|
||||||
- [ ] Telescope shortcut for file content
|
- [ ] Telescope shortcut for file content
|
||||||
- [ ] Markdown snippets
|
- [ ] Markdown snippets
|
||||||
- [ ] Make whichkey better
|
- [ ] Make whichkey better
|
||||||
- [ ] Backup system for some folders ($home/dev, $home/pictures, ...)
|
- [ ] Backup system for some folders ($home/dev, $home/pictures, ...)
|
||||||
- [ ] Exclude file pattern (nodes modules, ...)
|
- [ ] Exclude file pattern (nodes modules, ...)
|
||||||
- [ ] Nextcloud exclude file pattern (nodes modules, ...)
|
- [ ] Nextcloud exclude file pattern (nodes modules, ...)
|
||||||
- [ ] Automount USB Key (And notify-send when it's done)
|
- [ ] Automount USB Key (And notify-send when it's done)
|
||||||
- [ ] Usb security for laptop & server, variable in variables.nix, disable for guest
|
- [ ] Usb security for laptop & server, variable in variables.nix, disable for guest
|
||||||
- [ ] Bitcoin-git
|
- [ ] Bitcoin-git
|
||||||
- [ ] server fetch
|
- [ ] server fetch
|
||||||
- [ ] Remote push
|
- [ ] Remote push
|
||||||
- [ ] Ntfy auth file
|
- [ ] Ntfy auth file
|
||||||
- [ ] Uptime kuma or alt
|
- [ ] Uptime kuma or alt
|
||||||
- [ ] Tailscale variable
|
|
@ -25,4 +25,5 @@ variables=$(echo "$variables" | sed 's/hadi/your_username/')
|
|||||||
variables=$(echo "$variables" | sed 's/Hadi/your_username/')
|
variables=$(echo "$variables" | sed 's/Hadi/your_username/')
|
||||||
variables=$(echo "$variables" | sed 's/sops = true/sops = false/')
|
variables=$(echo "$variables" | sed 's/sops = true/sops = false/')
|
||||||
variables=$(echo "$variables" | sed 's/obsidian = true/obsidian = false/')
|
variables=$(echo "$variables" | sed 's/obsidian = true/obsidian = false/')
|
||||||
|
variables=$(echo "$variables" | sed 's/tailscale = true/tailscale = false/')
|
||||||
echo "$variables" >"$GUEST_CONFIG/variables.nix"
|
echo "$variables" >"$GUEST_CONFIG/variables.nix"
|
||||||
|
@ -40,6 +40,7 @@
|
|||||||
bitwarden
|
bitwarden
|
||||||
vlc
|
vlc
|
||||||
nextcloud-client
|
nextcloud-client
|
||||||
|
tailscale
|
||||||
|
|
||||||
# Dev
|
# Dev
|
||||||
go
|
go
|
||||||
|
@ -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;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{ config, ... }: {
|
||||||
services.tailscale = {
|
services.tailscale = {
|
||||||
enable = true;
|
enable = config.var.tailscale;
|
||||||
useRoutingFeatures = "both";
|
useRoutingFeatures = "both";
|
||||||
authKeyFile = "/etc/tailscale/authKey";
|
authKeyFile = "/etc/tailscale/authKey";
|
||||||
openFirewall = true;
|
openFirewall = true;
|
||||||
|
@ -14,6 +14,7 @@
|
|||||||
../modules/server/adguard.nix
|
../modules/server/adguard.nix
|
||||||
../modules/server/ntfy-sh.nix
|
../modules/server/ntfy-sh.nix
|
||||||
../modules/server/tailscale.nix
|
../modules/server/tailscale.nix
|
||||||
|
../modules/server/kuma.nix
|
||||||
# ../modules/server/unifi.nix # FIXME: unifi5 is deprecated
|
# ../modules/server/unifi.nix # FIXME: unifi5 is deprecated
|
||||||
|
|
||||||
];
|
];
|
||||||
|
@ -24,6 +24,7 @@
|
|||||||
autoGarbageCollector = false;
|
autoGarbageCollector = false;
|
||||||
sops = true;
|
sops = true;
|
||||||
obsidian = false;
|
obsidian = false;
|
||||||
|
tailscale = true;
|
||||||
|
|
||||||
theme = import ../themes/jack.nix; # select your theme here
|
theme = import ../themes/jack.nix; # select your theme here
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user