Compare commits
18 Commits
e54fc963f6
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 25e647190b | |||
| c942a482c2 | |||
| a802c85678 | |||
| fc58b0ad29 | |||
| 5d4e3982ee | |||
| cbedc31575 | |||
| f6585da4b7 | |||
| 64336e8f9f | |||
| efbb990fab | |||
| 0f105b5324 | |||
|
|
eb0c48b1e7 | ||
| e22144dcc0 | |||
| 09e90babd9 | |||
| 1d14750a1f | |||
| 300a594250 | |||
| dcda6ea9b8 | |||
| c3981e6316 | |||
| cb37b19941 |
@@ -20,6 +20,7 @@
|
|||||||
borgmatic
|
borgmatic
|
||||||
|
|
||||||
qbittorrent
|
qbittorrent
|
||||||
|
prusa-slicer
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
9
modules/hosts/tux/devtools.nix
Normal file
9
modules/hosts/tux/devtools.nix
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{ inputs, ... }: {
|
||||||
|
flake.modules.nixos.tux = {
|
||||||
|
imports = with inputs.self.modules.nixos;
|
||||||
|
with inputs.self.factory; [
|
||||||
|
development-tools
|
||||||
|
docker
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,18 +1,18 @@
|
|||||||
{
|
{
|
||||||
flake.modules.nixos.tux = {
|
flake.modules.nixos.tux = {
|
||||||
fileSystems."/" =
|
fileSystems."/" =
|
||||||
{ device = "/dev/disk/by-uuid/39bb2139-7d71-4f3d-9c11-2cf3fe26ad7d";
|
{ device = "/dev/mapper/luks-9d836ef1-a7f9-430f-8fb8-f202f6336e5a";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
{ device = "/dev/disk/by-uuid/6514-61C0";
|
{ device = "/dev/disk/by-uuid/15FA-55CF";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = [ "fmask=0077" "dmask=0077" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices =
|
swapDevices =
|
||||||
[ { device = "/dev/disk/by-uuid/ac1606de-34d3-4036-baf6-2ed17e54bfc3"; }
|
[ { device = "/dev/mapper/luks-46e78828-ab23-48b8-8e2a-de7a21adbe24"; }
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,15 +1,16 @@
|
|||||||
{inputs, ...}: {
|
{ inputs, ... }: {
|
||||||
flake.modules.nixos.tux = {
|
flake.modules.nixos.tux = {
|
||||||
imports = with inputs.self.modules.nixos; [
|
imports = with inputs.self.modules.nixos; [
|
||||||
intel-gpu
|
intel-gpu
|
||||||
];
|
];
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "sdhci_pci" ];
|
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" "usb_storage" "sd_mod" "sdhci_pci" ];
|
||||||
|
boot.initrd.luks.devices."luks-9d836ef1-a7f9-430f-8fb8-f202f6336e5a".device = "/dev/disk/by-uuid/9d836ef1-a7f9-430f-8fb8-f202f6336e5a";
|
||||||
|
boot.initrd.luks.devices."luks-46e78828-ab23-48b8-8e2a-de7a21adbe24".device = "/dev/disk/by-uuid/46e78828-ab23-48b8-8e2a-de7a21adbe24";
|
||||||
|
|
||||||
nixpkgs.hostPlatform = "x86_64-linux";
|
nixpkgs.hostPlatform = "x86_64-linux";
|
||||||
|
|
||||||
hardware.enableRedistributableFirmware = true;
|
hardware.enableRedistributableFirmware = true;
|
||||||
hardware.cpu.intel.updateMicrocode = true;
|
hardware.cpu.intel.updateMicrocode = true;
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,12 +4,13 @@
|
|||||||
with inputs.self.factory; [
|
with inputs.self.factory; [
|
||||||
system-desktop
|
system-desktop
|
||||||
systemd-boot
|
systemd-boot
|
||||||
|
bluetooth
|
||||||
|
i18n-de
|
||||||
|
|
||||||
(autologin "weckyy702")
|
(autologin "weckyy702")
|
||||||
|
|
||||||
development-tools
|
home-vpn
|
||||||
i18n-de
|
opentablet
|
||||||
tailscale
|
|
||||||
|
|
||||||
#TODO: laptop specific aspects like powertop
|
#TODO: laptop specific aspects like powertop
|
||||||
];
|
];
|
||||||
|
|||||||
5
modules/hosts/tux/users/weckyy702/bluetooth.nix
Normal file
5
modules/hosts/tux/users/weckyy702/bluetooth.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{ inputs, ... }: {
|
||||||
|
flake.modules.homeManager.blueman-applet = {
|
||||||
|
services.blueman-applet.enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
5
modules/hosts/tux/users/weckyy702/docker.nix
Normal file
5
modules/hosts/tux/users/weckyy702/docker.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
flake.modules.nixos.tux = {
|
||||||
|
users.users.weckyy702.extraGroups = [ "docker" ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -6,7 +6,7 @@
|
|||||||
(mount-cifs {
|
(mount-cifs {
|
||||||
host = "duke.veltnet";
|
host = "duke.veltnet";
|
||||||
resource = "smb-share";
|
resource = "smb-share";
|
||||||
destination = "/home/weckyy702/duke";
|
destination = "/mnt/nas";
|
||||||
credentials_path = "${config.age.secrets.nas-creds.path}";
|
credentials_path = "${config.age.secrets.nas-creds.path}";
|
||||||
UID = "weckyy702";
|
UID = "weckyy702";
|
||||||
GID = "users";
|
GID = "users";
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
imports = with inputs.self.modules.nixos; [
|
imports = with inputs.self.modules.nixos; [
|
||||||
weckyy702
|
weckyy702
|
||||||
upower
|
upower
|
||||||
|
libreoffice
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager.users.weckyy702 = {
|
home-manager.users.weckyy702 = {
|
||||||
@@ -14,6 +15,7 @@
|
|||||||
tux-hyprland
|
tux-hyprland
|
||||||
randomized-aghpb-wallpaper
|
randomized-aghpb-wallpaper
|
||||||
nm-applet
|
nm-applet
|
||||||
|
blueman-applet
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -6,9 +6,84 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
flake.modules.homeManager.browser = { pkgs, ... }: {
|
flake.modules.homeManager.browser =
|
||||||
|
{ pkgs
|
||||||
|
, lib
|
||||||
|
, ...
|
||||||
|
}:
|
||||||
|
let
|
||||||
|
mkExtension = shortId: guid: {
|
||||||
|
name = guid;
|
||||||
|
value = {
|
||||||
|
install_url = "https://addons.mozilla.org/en-US/firefox/downloads/latest/${shortId}/latest.xpi";
|
||||||
|
installation_mode = "normal_installed";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
zen-pkg =
|
||||||
|
inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.zen-browser-unwrapped;
|
||||||
|
|
||||||
|
prefs = {
|
||||||
|
"zen.tabs.vertical.right-side" = true;
|
||||||
|
"zen.workspaces.force-container-workspace" = true;
|
||||||
|
"zen.view.compact.enable-at-startup" = true;
|
||||||
|
"zen.pinned-tab-manager.restore-pinned-tabs-to-pinned-url" = true;
|
||||||
|
"zen.welcome-screen.seen" = true;
|
||||||
|
|
||||||
|
"sidebar.visibility" = "hide-sidebar";
|
||||||
|
|
||||||
|
"browser.ctrlTab.sortByRecentlyUsed" = true;
|
||||||
|
|
||||||
|
"privacy.fingerprintingProtection" = true;
|
||||||
|
"privacy.globalprivacycontrol.was_ever_enabled" = true;
|
||||||
|
"privacy.sanitize.clearOnShutdown.hasMigratedToNewPrefs3" = true;
|
||||||
|
"privacy.trackingprotection.allow_list.convenience.enabled" = false;
|
||||||
|
"privacy.trackingprotection.allow_list.hasMigratedCategoryPrefs" = true;
|
||||||
|
"privacy.trackingprotection.allow_list.hasUserInteractedWithETPSettings" = true;
|
||||||
|
"privacy.trackingprotection.emailtracking.enabled" = true;
|
||||||
|
"privacy.trackingprotection.enabled" = true;
|
||||||
|
"privacy.trackingprotection.socialtracking.enabled" = true;
|
||||||
|
};
|
||||||
|
extensions = [
|
||||||
|
# To add additional extensions, find it on addons.mozilla.org, find
|
||||||
|
# the short ID in the url (like https://addons.mozilla.org/en-US/firefox/addon/!SHORT_ID!/)
|
||||||
|
# Then go to https://addons.mozilla.org/api/v5/addons/addon/!SHORT_ID!/ to get the guid
|
||||||
|
(mkExtension "ublock-origin" "uBlock0@raymondhill.net")
|
||||||
|
(mkExtension "darkreader" "addon@darkreader.org")
|
||||||
|
(mkExtension "bitwarden-password-manager" "{446900e4-71c2-419f-a6a7-df9c091e268b}")
|
||||||
|
# ...
|
||||||
|
];
|
||||||
|
in
|
||||||
|
{
|
||||||
home.packages = [
|
home.packages = [
|
||||||
inputs.zen-browser.packages.${pkgs.stdenv.hostPlatform.system}.default
|
(
|
||||||
|
pkgs.wrapFirefox zen-pkg
|
||||||
|
{
|
||||||
|
extraPrefs = lib.concatLines (
|
||||||
|
lib.mapAttrsToList
|
||||||
|
(
|
||||||
|
name: value: ''lockPref(${lib.strings.toJSON name}, ${lib.strings.toJSON value});''
|
||||||
|
)
|
||||||
|
prefs
|
||||||
|
);
|
||||||
|
|
||||||
|
extraPolicies = {
|
||||||
|
DisableTelemetry = true;
|
||||||
|
ExtensionSettings = builtins.listToAttrs extensions;
|
||||||
|
|
||||||
|
SearchEngines = {
|
||||||
|
Default = "ddg";
|
||||||
|
Add = [
|
||||||
|
{
|
||||||
|
Name = "nixpkgs packages";
|
||||||
|
URLTemplate = "https://search.nixos.org/packages?query={searchTerms}";
|
||||||
|
IconURL = "https://wiki.nixos.org/favicon.ico";
|
||||||
|
Alias = "@np";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
)
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,15 +1,15 @@
|
|||||||
{ inputs, ... }: {
|
{ inputs, ... }: {
|
||||||
flake.modules.nixos.development-tools = { pkgs, ... }: {
|
flake.modules.nixos.development-tools = { pkgs, ... }: {
|
||||||
imports = with inputs.self.modules.nixos; [
|
|
||||||
rust
|
|
||||||
];
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
cmake
|
cmake
|
||||||
gnumake
|
gnumake
|
||||||
clang
|
clang
|
||||||
gcc
|
gcc
|
||||||
|
|
||||||
|
man-pages
|
||||||
|
man-pages-posix
|
||||||
];
|
];
|
||||||
|
documentation.dev.enable = true;
|
||||||
|
|
||||||
programs.direnv = {
|
programs.direnv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@@ -17,5 +17,7 @@
|
|||||||
silent = true;
|
silent = true;
|
||||||
nix-direnv.enable = true;
|
nix-direnv.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs.nix-ld.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
flake.modules.nixos.rust = { pkgs, ... }: {
|
flake.modules.nixos.development-tools = { pkgs, ... }: {
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
inputs.rust-overlay.overlays.default
|
inputs.rust-overlay.overlays.default
|
||||||
];
|
];
|
||||||
|
|||||||
5
modules/programs/development-tools/udev.nix
Normal file
5
modules/programs/development-tools/udev.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
flake.modules.nixos.development-tools = { pkgs, ... }: {
|
||||||
|
services.udev.packages = with pkgs; [ platformio-core.udev ];
|
||||||
|
};
|
||||||
|
}
|
||||||
8
modules/programs/docker.nix
Normal file
8
modules/programs/docker.nix
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
flake.modules.nixos.docker = {
|
||||||
|
virtualisation.docker = {
|
||||||
|
enable = true;
|
||||||
|
autoPrune.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
7
modules/programs/libreoffice.nix
Normal file
7
modules/programs/libreoffice.nix
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
flake.modules.nixos.libreoffice = { pkgs, ... }: {
|
||||||
|
environment.systemPackages = with pkgs; [
|
||||||
|
libreoffice
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
{ ... }: {
|
{ ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
./lsp.nix
|
./lsp.nix
|
||||||
|
./formatter.nix
|
||||||
./telescope
|
./telescope
|
||||||
./cmp
|
./cmp
|
||||||
];
|
];
|
||||||
|
|||||||
15
modules/programs/nixvim/_nixvim-config/plugins/formatter.nix
Normal file
15
modules/programs/nixvim/_nixvim-config/plugins/formatter.nix
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
{
|
||||||
|
plugins.conform-nvim = {
|
||||||
|
enable = true;
|
||||||
|
autoInstall.enable = true;
|
||||||
|
settings = {
|
||||||
|
formatters_by_ft = {
|
||||||
|
cpp = [ "clang_format" ];
|
||||||
|
markdown = [
|
||||||
|
"prettier"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
formatters = { };
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -20,6 +20,8 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
rnix.enable = true;
|
rnix.enable = true;
|
||||||
|
|
||||||
|
basedpyright.enable = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
keymaps = [
|
keymaps = [
|
||||||
|
|||||||
7
modules/programs/prusa-slicer.nix
Normal file
7
modules/programs/prusa-slicer.nix
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
flake.modules.homeManager.prusa-slicer = { pkgs, ... }: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
prusa-slicer
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -8,9 +8,6 @@
|
|||||||
protontricks = {
|
protontricks = {
|
||||||
enable = true;
|
enable = true;
|
||||||
};
|
};
|
||||||
dedicatedServer.openFirewall = true;
|
|
||||||
localNetworkGameTransfers.openFirewall = true;
|
|
||||||
remotePlay.openFirewall = true;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,10 @@
|
|||||||
flake.modules.nixos.backlight = {
|
flake.modules.nixos.backlight = {
|
||||||
programs.light = {
|
programs.light = {
|
||||||
enable = true;
|
enable = true;
|
||||||
brightnessKeys.enable = true;
|
brightnessKeys = {
|
||||||
|
enable = true;
|
||||||
|
step = 5;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -30,14 +30,10 @@
|
|||||||
patterns = [
|
patterns = [
|
||||||
#TODO: home.homeDirectory might be usable here
|
#TODO: home.homeDirectory might be usable here
|
||||||
#TODO: should be user and machine specific
|
#TODO: should be user and machine specific
|
||||||
"R /home/${username}/Documents"
|
"R /home/${username}"
|
||||||
"R /home/${username}/.ssh"
|
"+ /home/${username}/.ssh"
|
||||||
"- /home/${username}/Documents/SteamLibrary"
|
"- /home/${username}/.*"
|
||||||
"- /home/${username}/Documents/PrismLauncher instances"
|
|
||||||
"- /home/${username}/Documents/.Trash-1000"
|
|
||||||
"- /home/${username}/Documents/VMs/Data"
|
|
||||||
"- **/node_modules"
|
"- **/node_modules"
|
||||||
"- **/.git"
|
|
||||||
"- **/.cache"
|
"- **/.cache"
|
||||||
"- **/*build"
|
"- **/*build"
|
||||||
"- **/target"
|
"- **/target"
|
||||||
@@ -48,6 +44,8 @@
|
|||||||
"- **/dist"
|
"- **/dist"
|
||||||
"- **/.pio"
|
"- **/.pio"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
extraConfig.exclude_if_present = [ ".borgignore" ];
|
||||||
};
|
};
|
||||||
retention.keepWeekly = 2;
|
retention.keepWeekly = 2;
|
||||||
storage.extraConfig.ssh_command = "ssh -i /home/${username}/.ssh/id_ed25519_borg";
|
storage.extraConfig.ssh_command = "ssh -i /home/${username}/.ssh/id_ed25519_borg";
|
||||||
|
|||||||
12
modules/services/flameshot.nix
Normal file
12
modules/services/flameshot.nix
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
{
|
||||||
|
flake.modules.homeManager.flameshot = {
|
||||||
|
services.flameshot = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
General = {
|
||||||
|
useGrimAdapter = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -2,7 +2,8 @@
|
|||||||
flake.modules.nixos.bluetooth = {
|
flake.modules.nixos.bluetooth = {
|
||||||
hardware.bluetooth = {
|
hardware.bluetooth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
services.blueman.enable = true;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
14
modules/system-settings/home-vpn.nix
Normal file
14
modules/system-settings/home-vpn.nix
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
{ self, ... }: {
|
||||||
|
flake.modules.nixos.home-vpn = {
|
||||||
|
imports = with self.modules.nixos; [
|
||||||
|
tailscale
|
||||||
|
resolved
|
||||||
|
];
|
||||||
|
|
||||||
|
services.resolved.extraConfig = ''
|
||||||
|
[Resolve]
|
||||||
|
DNS=10.10.0.1
|
||||||
|
Domains=~veltnet
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
8
modules/system-settings/opentablet.nix
Normal file
8
modules/system-settings/opentablet.nix
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
flake.modules.nixos.opentablet = {
|
||||||
|
hardware.opentabletdriver = {
|
||||||
|
enable = true;
|
||||||
|
daemon.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
7
modules/system-settings/resolved.nix
Normal file
7
modules/system-settings/resolved.nix
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
flake.modules.nixos.resolved = {
|
||||||
|
services.resolved.enable = true;
|
||||||
|
|
||||||
|
networking.networkmanager.dns = "systemd-resolved";
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -23,6 +23,7 @@
|
|||||||
multimedia
|
multimedia
|
||||||
zsh
|
zsh
|
||||||
thunderbird
|
thunderbird
|
||||||
|
flameshot
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,12 @@
|
|||||||
-----BEGIN AGE ENCRYPTED FILE-----
|
-----BEGIN AGE ENCRYPTED FILE-----
|
||||||
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IHNzaC1lZDI1NTE5IFNjTWNPZyB6Mzk1
|
YWdlLWVuY3J5cHRpb24ub3JnL3YxCi0+IHNzaC1lZDI1NTE5IFNjTWNPZyBDZVNV
|
||||||
MWl5cW5uNkc0WTFUTEF1TGFOS0J3a1YyRzJieTlDOGVPbm84WVVNCjJUNlp5K3Ny
|
dEhaL21OOUpVeEIyVHY0RHUySldpMkxEMjNrbk5nbWlNRUZrblRvCmEyTnRlNC8r
|
||||||
YUhMdWp2Zk5tNGp1TkxKcnNST2h1N0VrVnNiaUZzV21QUFUKLT4gc3NoLWVkMjU1
|
cldvZGEwS1QvSzdWdGdNSHUrR1N5M1lJcXBpcHZ2RDVMc0UKLT4gc3NoLWVkMjU1
|
||||||
MTkgZkJwNFR3IDR5UFhoTkNOUlJyVmovMUQzTExGK2Y2bFZPMW9ZZFdQTFliUFVj
|
MTkgZkJwNFR3IERiWDkrMEk5MU1vSHB4MmpFbjRMSDhiY3EwVXlrejBHT0h2N2pm
|
||||||
WDRPM2cKSjFQVWhVZXFMY0ZzdDEraXdkeW1BVkRtemFQdHYzeUI4ZjhrNFdsdmo1
|
N0I3MGsKd3RFQ01ObktrNkV5Z1ZsMVFzakVmUXJEczIyV2FVbldCQThCVERQMzJO
|
||||||
WQotPiBzc2gtZWQyNTUxOSBZazBxSWcgOUJxQkMzYzFrYWhVOTVFTnNvVmI1WDBn
|
VQotPiBzc2gtZWQyNTUxOSBZazBxSWcgNjBhL2RldVQ2SWhjL0R2c09jUUY4d01j
|
||||||
U2ZCVDU0WTliQzRxTVZKdCtCdwpYbUlJVmNHaHpuY0dJMldJSEFkbmpkZTlmTkI1
|
RjFjamExWlEvOHlaVUhhQlhURQplRzgxY1pxblZnOXNkZVVEUHN0MVlsRFlQK1hW
|
||||||
Y3lhQWRBaWdNOGpvcHdzCi0tLSA0dm04SEovSnZ5dW9MaTdxV1NSUGxnZ3orTzNy
|
WWVWQ1NwSHM1eUFtRHBvCi0tLSBnL0tvY3JBR3JVaGZVT2NZU2F4SnJlLzE5VUFw
|
||||||
WUt6eUt6TFAyTGFhdWFVCs0loU4KFs/vYaJX4d31Gf1y8Fv/jWEIALZ4KIqbEPPf
|
QU4zM2lsNnRKQkE2blBVCqVEBU+W7CRtMD5OPPvioRttzBk1ZAJSgSiZkJPdVli9
|
||||||
3C1Ljr2Mbfz231S/zxjfjK2vhHNtYdBtPOsEtpvThCZSTzuJ/WUzox5XUfL7
|
Phhr6ZWAr3crBp3Pbn3emLmh+79XdOeAjXI5NhKA2/qW1eSpfClr2rIwu3HX
|
||||||
-----END AGE ENCRYPTED FILE-----
|
-----END AGE ENCRYPTED FILE-----
|
||||||
|
|||||||
Reference in New Issue
Block a user