mionr fix

This commit is contained in:
kenji
2025-07-07 14:42:02 -05:00
parent 65f04a69ae
commit ec55ac55b2
5 changed files with 13 additions and 34 deletions
+2 -2
View File
@@ -2,7 +2,7 @@
myConfig = { myConfig = {
essentials = { essentials = {
# !!! replace it with your own, else system might malfunction. # !!! replace it with your own, else system might malfunction.
Username = "lsoriano"; Username = "kenji";
}; };
general = { general = {
Terminal = { Terminal = {
@@ -16,7 +16,7 @@
}; };
nixos = { nixos = {
Hostname = "nixos"; Hostname = "hakase";
Timezone = "America/Chicago"; Timezone = "America/Chicago";
Boot = { Boot = {
-2
View File
@@ -51,8 +51,6 @@
}; };
args = mkArgs system; args = mkArgs system;
in { in {
# This is optional if you want per-system packages or apps
packages.default = pkgs.hello;
}) })
// { // {
nixosConfigurations = { nixosConfigurations = {
+1
View File
@@ -6,4 +6,5 @@ in {
../modules/home/terminal.nix ../modules/home/terminal.nix
]; ];
home.packages = info.myConfig.nixos.Apps.packages pkgs; home.packages = info.myConfig.nixos.Apps.packages pkgs;
home.stateVersion = "25.05";
} }
+8 -8
View File
@@ -39,7 +39,7 @@
enable32Bit = true; enable32Bit = true;
}; };
i18.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
time.timeZone = "${myConfig.nixos.Timezone}"; time.timeZone = "${myConfig.nixos.Timezone}";
boot.loader = { boot.loader = {
@@ -84,11 +84,11 @@
alsa.support32Bit = true; alsa.support32Bit = true;
pulse.enable = true; pulse.enable = true;
lowLatency = { # lowLatency = {
enable = true; # enable = true;
quantum = 64; # quantum = 64;
rate = 48000; # rate = 48000;
}; # };
}; };
}; };
# make pipewire realtime-capable # make pipewire realtime-capable
@@ -108,9 +108,9 @@
enable = false; enable = false;
allowedTCPPorts = [22 80]; allowedTCPPorts = [22 80];
allowedUDPPorts = [53]; allowedUDPPorts = [53];
proxy.default = null;
proxy.noProxy = null;
}; };
proxy.default = null;
proxy.noProxy = null;
}; };
# networking.firewall.allowedTCPPorts = [ ... ]; # networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ]; # networking.firewall.allowedUDPPorts = [ ... ];
+2 -22
View File
@@ -77,8 +77,7 @@
# Valid strings for installation_mode are "allowed", "blocked", # Valid strings for installation_mode are "allowed", "blocked",
# "force_installed" and "normal_installed". # "force_installed" and "normal_installed".
ExtensionSettings = { ExtensionSettings = {
"*".installation_mode = "blocked"; # blocks all addons except the ones specified below "*".installation_mode = "blocked";
# uBlock Origin:
"uBlock0@raymondhill.net" = { "uBlock0@raymondhill.net" = {
install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi"; install_url = "https://addons.mozilla.org/firefox/downloads/latest/ublock-origin/latest.xpi";
installation_mode = "force_installed"; installation_mode = "force_installed";
@@ -100,27 +99,8 @@
# "{d634138d-c276-4fc8-924b-40a0ea21d284}" = { # "{d634138d-c276-4fc8-924b-40a0ea21d284}" = {
# install_url = "https://addons.mozilla.org/firefox/downloads/latest/1password-x-password-manager/latest.xpi"; # install_url = "https://addons.mozilla.org/firefox/downloads/latest/1password-x-password-manager/latest.xpi";
# installation_mode = "force_installed"; # installation_mode = "force_installed";
# };
}; };
}; };
preferences = {
"browser.contentblocking.category" = "strict";
"extensions.pocket.enabled" = false;
"extensions.screenshots.disabled" = true;
"browser.topsites.contile.enabled" = false;
"browser.formfill.enable" = false;
"browser.search.suggest.enabled" = false;
"browser.search.suggest.enabled.private" = false;
"browser.urlbar.suggest.searches" = false;
"browser.urlbar.showSearchSuggestionsFirst" = false;
"browser.newtabpage.activity-stream.feeds.section.topstories" = false;
"browser.newtabpage.activity-stream.feeds.snippets" = false;
"browser.newtabpage.activity-stream.section.highlights.includePocket" = false;
"browser.newtabpage.activity-stream.section.highlights.includeBookmarks" = false;
"browser.newtabpage.activity-stream.section.highlights.includeDownloads" = false;
"browser.newtabpage.activity-stream.section.highlights.includeVisited" = false;
"browser.newtabpage.activity-stream.showSponsored" = false;
"browser.newtabpage.activity-stream.system.showSponsored" = false;
"browser.newtabpage.activity-stream.showSponsoredTopSites" = false;
};
}; };
} }