Fix mallorea
This commit is contained in:
parent
bcb07dd0bd
commit
e7cdc999c0
|
|
@ -38,6 +38,7 @@
|
|||
commonModules = host: user: [
|
||||
./hosts/${host}/hardware-configuration.nix
|
||||
({pkgs, ...}: {
|
||||
pkgs.config.allowUnfree = true;
|
||||
networking.hostName = host;
|
||||
time.timeZone = "Asia/Bangkok";
|
||||
nix.settings = {
|
||||
|
|
@ -123,7 +124,7 @@
|
|||
"user@Tolnedra" = mkHome "x86_64-linux" ./home/Tolnedra.nix;
|
||||
"server@Vault" = mkHome "x86_64-linux" ./home/Vault.nix;
|
||||
"user@Docker" = mkHome "x86_64-linux" ./home/Docker.nix;
|
||||
"server@Mallorea" = mkHome "x86_64-linux" ./home/Mallorea.nix;
|
||||
"server@mallorea" = mkHome "x86_64-linux" ./home/Mallorea.nix;
|
||||
};
|
||||
|
||||
# Generic formatter across architectures
|
||||
|
|
|
|||
|
|
@ -98,4 +98,9 @@ in {
|
|||
LANG = "en_US.UTF-8";
|
||||
XDG_RUNTIME_DIR = "/run/user/$(id -u)";
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
rclone
|
||||
uv
|
||||
claude-code
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -160,7 +160,7 @@ borg create -s --progress \
|
|||
|
||||
borg prune -d 365 --save-space 10.4.0.1:Storage/Thomas/Borg/Cloud
|
||||
borg compact 10.4.0.1:Storage/Thomas/Borg/Cloud
|
||||
ssh vault /home/server/Storage/Thomas/Borg/Sync.sh
|
||||
# ssh vault /home/server/Storage/Thomas/Borg/Sync.sh
|
||||
|
||||
##########################################
|
||||
# Lock the Vault #
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
pkgs.moreutils
|
||||
inputs.fzgo.packages.${pkgs.stdenv.hostPlatform.system}.default
|
||||
];
|
||||
programs.zsh.dotDir = "${config.xdg.configHome}/zsh";
|
||||
home.sessionVariables = {
|
||||
BROWSER = "Helium";
|
||||
PDF_VIEWER = "evince";
|
||||
|
|
|
|||
Loading…
Reference in New Issue