Update system to stable state
This commit is contained in:
@@ -10,6 +10,7 @@
|
|||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
./desktop-environment.nix
|
./desktop-environment.nix
|
||||||
./terminal-environment.nix
|
./terminal-environment.nix
|
||||||
|
./cron-schedule.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
# Bootloader.
|
# Bootloader.
|
||||||
@@ -78,5 +79,5 @@
|
|||||||
# this value at the release version of the first install of this system.
|
# this value at the release version of the first install of this system.
|
||||||
# Before changing this value read the documentation for this option
|
# Before changing this value read the documentation for this option
|
||||||
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
|
||||||
system.stateVersion = "25.11";
|
system.stateVersion = "25.05";
|
||||||
}
|
}
|
||||||
|
|||||||
12
cron-schedule.nix
Normal file
12
cron-schedule.nix
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
# Enable cron service
|
||||||
|
services.cron = {
|
||||||
|
enable = true;
|
||||||
|
systemCronJobs = [
|
||||||
|
"0 0 * * * root reboot"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
@@ -23,7 +23,6 @@
|
|||||||
services.dbus.enable = true;
|
services.dbus.enable = true;
|
||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
hardware.graphics.enable = true;
|
hardware.graphics.enable = true;
|
||||||
hardware.opengl.enable = true;
|
|
||||||
|
|
||||||
services.greetd = {
|
services.greetd = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|||||||
@@ -48,9 +48,9 @@
|
|||||||
"emoji-clock"
|
"emoji-clock"
|
||||||
"fzf"
|
"fzf"
|
||||||
"kitty"
|
"kitty"
|
||||||
"sudo"
|
|
||||||
"themes"
|
"themes"
|
||||||
"tmux"
|
"tmux"
|
||||||
|
"vi-mode"
|
||||||
];
|
];
|
||||||
theme = "sonicradish";
|
theme = "sonicradish";
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user