Compare commits

...

8 commits

Author SHA1 Message Date
alydev
1742d0b4d5 update
Some checks are pending
/ Check (push) Waiting to run
2025-10-21 16:03:15 +10:00
alydev
6824909dbe update 2025-10-21 16:01:45 +10:00
alydev
7e739005d7 update 2025-10-21 16:00:53 +10:00
alydev
5d8e51e3c4 update 2025-10-21 15:57:45 +10:00
alydev
5ee696e854 update
Some checks failed
/ Check (push) Has been cancelled
2025-10-15 18:44:53 +10:00
alydev
806f8c6087 Merge branch 'main' of github.com:alyssadev/nixos 2025-10-15 18:43:49 +10:00
alydev
2a7482b129 update 2025-10-15 18:41:59 +10:00
alydev
a1ac429505 update
Some checks failed
/ Check (push) Has been cancelled
2025-10-13 22:11:47 +10:00
3 changed files with 8 additions and 3 deletions

View file

@ -9,13 +9,14 @@ boot:
commit: commit:
git add . git add .
-git pull origin main
-git commit -a -m "update" -git commit -a -m "update"
_switch: _switch:
nixos-rebuild switch --flake . --use-remote-sudo nixos-rebuild switch --flake . --use-remote-sudo
push: push:
git push origin --all git push origin main
switch: commit _switch push switch: commit _switch push

View file

@ -4,14 +4,18 @@
laptop = { config = '' config /home/aly/.secrets/laptop.ovpn ''; }; laptop = { config = '' config /home/aly/.secrets/laptop.ovpn ''; };
}; };
fileSystems."/mnt/storage" = { fileSystems."/mnt/storage" = {
device = "aly@lan.aly.pet:/mnt/storage"; device = "aly@vpn.aly.pet:/mnt/storage";
fsType = "sshfs"; fsType = "sshfs";
options = ["nodev,noatime,allow_other,IdentityFile=/home/aly/.ssh/id_ed25519"]; options = ["nodev,noatime,allow_other,IdentityFile=/home/aly/.ssh/id_ed25519"];
}; };
services.gnome = {
gnome-browser-connector.enable = true;
};
services.logind = { services.logind = {
lidSwitch = "suspend"; lidSwitch = "suspend";
lidSwitchDocked = "ignore"; lidSwitchDocked = "ignore";
lidSwitchExternalPower = "ignore"; lidSwitchExternalPower = "ignore";
powerKey = "ignore";
}; };
services.flatpak.enable = true; services.flatpak.enable = true;
services.flatpak.packages = [ services.flatpak.packages = [

View file

@ -15,7 +15,7 @@
services.cron = { services.cron = {
enable = true; enable = true;
systemCronJobs = [ systemCronJobs = [
"0 3 * * 0,2,4,6 /mnt/storage/media/randomintro.sh" "* * * * * /mnt/storage/media/randomintro.sh"
]; ];
}; };
system.stateVersion = "25.05"; system.stateVersion = "25.05";