7 Commits

Author SHA1 Message Date
Hadi a7100f6ed5 fix shell path
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
2026-08-14 00:15:12 +02:00
Hadi 828fe95bd4 Add "Hardened" in the readme
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
2026-08-14 00:04:20 +02:00
Hadi be9ffa94c6 add obsidian to impermanence
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
2026-08-14 00:01:34 +02:00
Hadi 7fd44889a5 update comments
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
2026-08-13 23:53:14 +02:00
Hadi 3b32f061da Don't want to be lectured
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
2026-08-13 23:49:27 +02:00
Hadi 2234f167ef set the password
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
2026-08-13 23:47:08 +02:00
Hadi 07df6754de fix: waybar osd call
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
2026-08-13 23:46:58 +02:00
8 changed files with 9 additions and 21 deletions
+1
View File
@@ -33,6 +33,7 @@ _secrets_, and _custom theming_ all in one place.
- 💻 Hyprland & TUIs: Preconfigured Hyprland ecosystem with a lot of cool TUIs
- 🎨 Consistent Theming: Base16 & Stylix-powered themes
- ⌨️ Vim-like Everywhere: Unified keybindings (Hyprland, nvim, vimium, etc.)
- 🔒 Hardened by Default: LUKS encryption, sops-nix secrets, impermanence and more
## Table of Content
+1
View File
@@ -19,5 +19,6 @@
home.persistence."/persist".directories = [
".config/ticktick"
".config/Signal"
".config/obsidian"
];
}
+1 -1
View File
@@ -29,7 +29,7 @@
home-manager.users."${config.var.username}" = import ./home.nix;
users.users.${config.var.username}.hashedPasswordFile = config.sops.secrets.hashedPassword.path;
users.users.${config.var.username}.hashedPassword = "$y$j9T$A7gH534UczuBxulj9IfEu1$ImRy3lpYpemRWNVIkA7efKPWXneFiqhZnEF1aMkWcD8"; # CHANGEME: This is my password
# Don't touch this
system.stateVersion = "26.05";
+2 -11
View File
@@ -1,5 +1,5 @@
# Impermanence: declares what should survive a wipe of "/".
{config, ...}: {
{
environment.persistence."/persist" = {
hideMounts = true;
@@ -13,6 +13,7 @@
"/var/lib/systemd/timers" # last-run timestamps (e.g. nix gc weekly)
"/var/log"
"/var/cache/tuigreet"
"/var/db/sudo/lectured" # remembers that the sudo lecture was already shown
];
files = [
@@ -24,14 +25,4 @@
"/var/lib/systemd/random-seed" # avoid a weak entropy pool on first boot
];
};
# -- How to find what's missing --
# Use the system normally for a week or two, then look for files that
# changed recently outside of what's already declared above:
# find "/home/${config.var.username}" -xdev -type f -mtime -14 \
# -not -path '*/.cache/*' -not -path '*/Cache/*' | less
# Anything that keeps showing up there (app state, history files,
# game saves, browser profile, spotify/lazygit config, GPG state, etc.)
# is a candidate to add above. Do this *before* switching root to a
# wipeable filesystem, not after.
}
-2
View File
@@ -12,8 +12,6 @@ in {
age.keyFile = "${home}/.config/sops/age/keys.txt";
defaultSopsFile = ./secrets.yaml;
secrets = {
hashedPassword.neededForUsers = true;
ssh-config = {
owner = username;
path = "${home}/.ssh/config";
File diff suppressed because one or more lines are too long
+1 -3
View File
@@ -5,8 +5,6 @@
}: let
vpnConnection = "wg-vpn";
# Same OSD mechanism as home/system/waybar/scripts.nix's waybar-osd: drop the
# text in /tmp/waybar-osd and nudge waybar's custom/osd module to show it.
toggleVpn = pkgs.writeShellScript "toggle-wg-vpn" ''
set -euo pipefail
nmcli="${pkgs.networkmanager}/bin/nmcli"
@@ -20,7 +18,7 @@
fi
printf '%s' "$OSD_TEXT" > /tmp/waybar-osd
${pkgs.procps}/bin/pkill -x -RTMIN+8 waybar 2>/dev/null || true
${pkgs.procps}/bin/pkill -f -RTMIN+8 '^waybar$' 2>/dev/null || true
'';
in {
environment.systemPackages = [
+1 -1
View File
@@ -3,7 +3,7 @@
gitHooksLib,
}: let
hooks = gitHooksLib.run {
src = ../.;
src = ./.;
hooks = {
inject-exec = {
enable = true;