Compare commits
3 Commits
9bdde29763
...
205c555984
| Author | SHA1 | Date | |
|---|---|---|---|
| 205c555984 | |||
| 71a6b7bc53 | |||
| b6f94d5044 |
@@ -116,6 +116,17 @@
|
|||||||
iconMapObj."64" = "https://chatgpt.com/favicon.ico";
|
iconMapObj."64" = "https://chatgpt.com/favicon.ico";
|
||||||
definedAliases = [ "@gpt" ];
|
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 = {
|
settings = {
|
||||||
|
|||||||
@@ -78,6 +78,9 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Svelte
|
# Svelte
|
||||||
|
"[svelte]" = {
|
||||||
|
"editor.defaultFormatter" = "svelte.svelte-vscode";
|
||||||
|
};
|
||||||
"svelte.enable-ts-plugin" = true;
|
"svelte.enable-ts-plugin" = true;
|
||||||
|
|
||||||
# C / C++
|
# C / C++
|
||||||
|
|||||||
@@ -1,8 +1,10 @@
|
|||||||
{
|
{
|
||||||
|
config,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
boot = {
|
boot = {
|
||||||
|
extraModulePackages = with config.boot.kernelPackages; [ virtualbox ];
|
||||||
loader = {
|
loader = {
|
||||||
systemd-boot = {
|
systemd-boot = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@@ -10,5 +12,6 @@
|
|||||||
};
|
};
|
||||||
efi.canTouchEfiVariables = true;
|
efi.canTouchEfiVariables = true;
|
||||||
};
|
};
|
||||||
|
kernelParams = [ "kvm.enable_virt_at_load=0" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,5 +14,6 @@
|
|||||||
./system.nix
|
./system.nix
|
||||||
./tailscale.nix
|
./tailscale.nix
|
||||||
./user.nix
|
./user.nix
|
||||||
|
./virtualisation.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -38,5 +38,8 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [ cifs-utils ];
|
environment.systemPackages = with pkgs; [
|
||||||
|
cifs-utils
|
||||||
|
# rclone
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
backupFileExtension = "backup11";
|
backupFileExtension = "backup18";
|
||||||
};
|
};
|
||||||
|
|
||||||
users.mutableUsers = false;
|
users.mutableUsers = false;
|
||||||
|
|||||||
8
modules/system/virtualisation.nix
Normal file
8
modules/system/virtualisation.nix
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
{
|
||||||
|
virtualisation.virtualbox.host.enable = true;
|
||||||
|
virtualisation.virtualbox.host.enableExtensionPack = true;
|
||||||
|
users.extraGroups.vboxusers.members = [ "eclypse" ];
|
||||||
|
}
|
||||||
@@ -10,7 +10,7 @@ in
|
|||||||
# Update tailscale-auth.age with `agenix -e tailscale-auth.age -i /path/to/private-ssh-key`
|
# 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
|
# 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;
|
"tailscale-auth.age".publicKeys = [ vanta ]; # Devices allowed to join the tailnet;
|
||||||
|
|
||||||
# Devices that can connect to EclypseCloud with the eclypse user.
|
# Devices that can connect to EclypseCloud with the eclypse user.
|
||||||
"eclypsecloud-eclypse.age".publicKeys = [ vanta ];
|
"eclypsecloud-eclypse.age".publicKeys = [ vanta ];
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user