mirror of
https://github.com/js0ny/dotfiles.git
synced 2026-03-22 10:42:42 +00:00
chore: remove dups
This commit is contained in:
parent
131c255d4c
commit
e0a023da4f
10 changed files with 21 additions and 44 deletions
|
|
@ -45,7 +45,8 @@
|
|||
|
||||
# services
|
||||
../../modules/nixos/services/docker.nix
|
||||
../../modules/nixos/services/exp.nix
|
||||
../../modules/nixos/services/syncthing.nix
|
||||
../../modules/nixos/services/tailscale.nix
|
||||
];
|
||||
|
||||
# Hostname
|
||||
|
|
|
|||
|
|
@ -1,15 +1,4 @@
|
|||
{...}: {
|
||||
# See: https://consoledonottrack.com/
|
||||
home.sessionVariables = {
|
||||
DO_NOT_TRACK = "1";
|
||||
GATSBY_TELEMETRY_DISABLED = "1";
|
||||
HOMEBREW_NO_ANALYTICS = "1";
|
||||
STNOUPGRADE = "1";
|
||||
DOTNET_CLI_TELEMETRY_OPTOUT = "1";
|
||||
SAM_CLI_TELEMETRY = "0";
|
||||
AZURE_CORE_COLLECT_TELEMETRY = "0";
|
||||
GEMINI_TELEMETRY_ENABLED = "false";
|
||||
SCARF_NO_ANALYTICS = "true";
|
||||
ANONYMIZED_TELEMETRY = "false";
|
||||
};
|
||||
home.sessionVariables = import ../lib/do-not-track-vars.nix;
|
||||
}
|
||||
|
|
|
|||
14
nixcfgs/modules/lib/do-not-track-vars.nix
Normal file
14
nixcfgs/modules/lib/do-not-track-vars.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Shared telemetry opt-out variables
|
||||
# See: https://consoledonottrack.com/
|
||||
{
|
||||
DO_NOT_TRACK = "1";
|
||||
GATSBY_TELEMETRY_DISABLED = "1";
|
||||
HOMEBREW_NO_ANALYTICS = "1";
|
||||
STNOUPGRADE = "1";
|
||||
DOTNET_CLI_TELEMETRY_OPTOUT = "1";
|
||||
SAM_CLI_TELEMETRY = "0";
|
||||
AZURE_CORE_COLLECT_TELEMETRY = "0";
|
||||
GEMINI_TELEMETRY_ENABLED = "false";
|
||||
SCARF_NO_ANALYTICS = "true";
|
||||
ANONYMIZED_TELEMETRY = "false";
|
||||
}
|
||||
|
|
@ -1,15 +1,4 @@
|
|||
{...}: {
|
||||
# See: https://consoledonottrack.com/
|
||||
environment.variables = {
|
||||
DO_NOT_TRACK = "1";
|
||||
GATSBY_TELEMETRY_DISABLED = "1";
|
||||
HOMEBREW_NO_ANALYTICS = "1";
|
||||
STNOUPGRADE = "1";
|
||||
DOTNET_CLI_TELEMETRY_OPTOUT = "1";
|
||||
SAM_CLI_TELEMETRY = "0";
|
||||
AZURE_CORE_COLLECT_TELEMETRY = "0";
|
||||
GEMINI_TELEMETRY_ENABLED = "false";
|
||||
SCARF_NO_ANALYTICS = "true";
|
||||
ANONYMIZED_TELEMETRY = "false";
|
||||
};
|
||||
environment.variables = import ../../lib/do-not-track-vars.nix;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,3 @@
|
|||
{...}: {
|
||||
services.syncthing.enable = true;
|
||||
services.tailscale.enable = true;
|
||||
}
|
||||
3
nixcfgs/modules/nixos/services/tailscale.nix
Normal file
3
nixcfgs/modules/nixos/services/tailscale.nix
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
{...}: {
|
||||
services.tailscale.enable = true;
|
||||
}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
{pkgs, ...}: {
|
||||
my = {
|
||||
desktop = {
|
||||
preferredApps = {
|
||||
shell = pkgs.zsh;
|
||||
interactiveShell = pkgs.fish;
|
||||
terminal = {
|
||||
package = pkgs.kitty;
|
||||
execArg = "-e";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -9,7 +9,6 @@ in {
|
|||
imports = [
|
||||
../../modules/home/options.nix
|
||||
../../modules/home/do-not-track.nix
|
||||
# ./config.nix
|
||||
];
|
||||
home.username = username;
|
||||
home.homeDirectory =
|
||||
|
|
|
|||
|
|
@ -38,7 +38,6 @@
|
|||
./programs/darwin/alt-tab.nix
|
||||
./programs/darwin/iina.nix
|
||||
|
||||
../../modules/home/do-not-track.nix
|
||||
../../modules/home/darwin.nix
|
||||
|
||||
../../modules/home/programs/lsd.nix
|
||||
|
|
|
|||
|
|
@ -91,8 +91,6 @@ in {
|
|||
./programs/desktop/gnome/copyous.nix
|
||||
./programs/desktop/wayland-wm/niri
|
||||
|
||||
../../modules/home/do-not-track.nix
|
||||
|
||||
# General Program config
|
||||
../../modules/home/programs/eza.nix
|
||||
# ../../modules/home/programs/winboat.nix
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue