Compare commits

...

2 commits

2 changed files with 9 additions and 1 deletions

View file

@ -107,6 +107,8 @@ in
services.gnome.gnome-keyring.enable = true;
services.resolved.enable = true;
nix = lib.mkIf cfg.nixSaneDefaults {
gc = lib.mkIf (!cfg.useNh) {
automatic = true;

View file

@ -11,7 +11,8 @@
imports = [ ./hardware-configuration.nix ];
networking.hostName = "callisto";
time.timeZone = "America/Los_Angeles";
# time.timeZone = "America/Los_Angeles";
time.timeZone = "Asia/Shanghai";
liminalOS = {
flakeLocation = "/home/youwen/.config/liminalOS";
@ -27,6 +28,11 @@
};
};
services.mullvad-vpn = {
enable = true;
package = pkgs.mullvad-vpn;
};
boot = {
loader.systemd-boot.enable = true;
loader.efi.canTouchEfiVariables = false;