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";
|
description = "Nettika's NixOS Configurations";
|
||||||
|
|
||||||
inputs = {
|
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";
|
shelvacu.url = "git+https://git.uninsane.org/shelvacu/nix-stuff";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -94,6 +94,8 @@
|
|||||||
intiface-central
|
intiface-central
|
||||||
prismlauncher
|
prismlauncher
|
||||||
blender
|
blender
|
||||||
|
mullvad-vpn
|
||||||
|
qbittorrent
|
||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@@ -48,6 +48,7 @@
|
|||||||
rustup
|
rustup
|
||||||
gcc
|
gcc
|
||||||
(callPackage ../marauder/ffcheck.nix { })
|
(callPackage ../marauder/ffcheck.nix { })
|
||||||
|
htop
|
||||||
];
|
];
|
||||||
|
|
||||||
services.jellyfin = {
|
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 = "🏰";
|
promptEmoji = "🏰";
|
||||||
|
|
||||||
time.timeZone = "America/Los_Angeles";
|
time.timeZone = "America/Los_Angeles";
|
||||||
|
Reference in New Issue
Block a user