Compare commits

...

3 Commits

Author SHA1 Message Date
205c555984 Updated VSCode and Firefox config 2025-10-14 14:50:52 -04:00
71a6b7bc53 Removed stu filesystem 2025-10-14 14:50:25 -04:00
b6f94d5044 Added virtualbox for vms 2025-10-14 14:49:39 -04:00
8 changed files with 32 additions and 3 deletions

View File

@@ -116,6 +116,17 @@
iconMapObj."64" = "https://chatgpt.com/favicon.ico";
definedAliases = [ "@gpt" ];
};
surugaya = {
name = "Surugaya";
urls = [
{
template = "https://www.suruga-ya.jp/search?search_word={searchTerms}";
}
];
iconMapObj."32" =
"https://www.suruga-ya.jp/drupal/themes/surugaya_mobile/images/pwa/images/icons/favicon-32x32.png";
definedAliases = [ "@suru" ];
};
};
};
settings = {

View File

@@ -78,6 +78,9 @@
};
# Svelte
"[svelte]" = {
"editor.defaultFormatter" = "svelte.svelte-vscode";
};
"svelte.enable-ts-plugin" = true;
# C / C++

View File

@@ -1,8 +1,10 @@
{
config,
...
}:
{
boot = {
extraModulePackages = with config.boot.kernelPackages; [ virtualbox ];
loader = {
systemd-boot = {
enable = true;
@@ -10,5 +12,6 @@
};
efi.canTouchEfiVariables = true;
};
kernelParams = [ "kvm.enable_virt_at_load=0" ];
};
}

View File

@@ -14,5 +14,6 @@
./system.nix
./tailscale.nix
./user.nix
./virtualisation.nix
];
}

View File

@@ -38,5 +38,8 @@ in
};
};
environment.systemPackages = with pkgs; [ cifs-utils ];
environment.systemPackages = with pkgs; [
cifs-utils
# rclone
];
}

View File

@@ -23,7 +23,7 @@
programs.home-manager.enable = true;
};
backupFileExtension = "backup11";
backupFileExtension = "backup18";
};
users.mutableUsers = false;

View File

@@ -0,0 +1,8 @@
{
...
}:
{
virtualisation.virtualbox.host.enable = true;
virtualisation.virtualbox.host.enableExtensionPack = true;
users.extraGroups.vboxusers.members = [ "eclypse" ];
}

View File

@@ -10,7 +10,7 @@ in
# Update tailscale-auth.age with `agenix -e tailscale-auth.age -i /path/to/private-ssh-key`
# Note: Only devices with the below public keys are allowed to edit tailscale-auth.age
"tailscale-auth.age".publicKeys = [ vanta ]; # Devices allowed to join the tailnet;
# Devices that can connect to EclypseCloud with the eclypse user.
"eclypsecloud-eclypse.age".publicKeys = [ vanta ];