Compare commits
4 Commits
227bf853ab
...
8cdb64ed65
Author | SHA1 | Date | |
---|---|---|---|
8cdb64ed65 | |||
5fd8e803b1 | |||
ac916d8305 | |||
0de7e50ffa |
716
flake.lock
generated
716
flake.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@
|
||||
description = "Nettika's NixOS Configurations";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.05";
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
|
||||
shelvacu.url = "git+https://git.uninsane.org/shelvacu/nix-stuff";
|
||||
};
|
||||
|
||||
|
@@ -94,6 +94,8 @@
|
||||
intiface-central
|
||||
prismlauncher
|
||||
blender
|
||||
mullvad-vpn
|
||||
qbittorrent
|
||||
]);
|
||||
};
|
||||
|
||||
|
@@ -48,6 +48,7 @@
|
||||
rustup
|
||||
gcc
|
||||
(callPackage ../marauder/ffcheck.nix { })
|
||||
htop
|
||||
];
|
||||
|
||||
services.jellyfin = {
|
||||
@@ -66,6 +67,24 @@
|
||||
};
|
||||
};
|
||||
|
||||
systemd = {
|
||||
services.reboot = {
|
||||
description = "Reboot the system";
|
||||
serviceConfig = {
|
||||
Type = "oneshot";
|
||||
ExecStart = "${pkgs.systemd}/bin/systemctl reboot";
|
||||
};
|
||||
};
|
||||
timers.reboot = {
|
||||
description = "Reboot the system every two hours";
|
||||
wantedBy = [ "timers.target" ];
|
||||
timerConfig = {
|
||||
OnBootSec = "6h";
|
||||
Persistent = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
promptEmoji = "🏰";
|
||||
|
||||
time.timeZone = "America/Los_Angeles";
|
||||
|
Reference in New Issue
Block a user