refactor: change where programs are activated
This commit is contained in:
parent
400cb5f8c2
commit
efd1f9adef
5 changed files with 22 additions and 11 deletions
|
@ -33,7 +33,7 @@
|
|||
urls = [
|
||||
{ template = "https://wiki.archlinux.org/index.php?title=Special:Search&search={searchTerms}"; }
|
||||
];
|
||||
iconUpdateURL = "https://nixos.wiki/favicon.ico";
|
||||
iconUpdateURL = "https://wiki.archlinux.org/favicon.ico";
|
||||
updateInterval = iconUpdateInterval;
|
||||
definedAliases = [ "@archwiki" ];
|
||||
};
|
||||
|
@ -61,6 +61,15 @@
|
|||
updateInterval = iconUpdateInterval;
|
||||
definedAliases = [ "@stackoverflow" ];
|
||||
};
|
||||
|
||||
Noogle = {
|
||||
urls = [ { template = "https://noogle.dev/q?term={searchTerms}"; } ];
|
||||
icon = nixicon;
|
||||
definedAliases = [
|
||||
"@noogle"
|
||||
"@ngl"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{ ... }:
|
||||
{
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
settings = {
|
||||
"mailnews.wraplength" = 80;
|
||||
"mail.pane_config.dynamic" = 2;
|
||||
|
|
|
@ -72,9 +72,13 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
programs.dconf.enable = true;
|
||||
programs.steam.enable = true;
|
||||
programs.fish.enable = true;
|
||||
programs = {
|
||||
dconf.enable = true;
|
||||
steam.enable = true;
|
||||
fish.enable = true;
|
||||
firefox.enable = true;
|
||||
thunderbird.enable = true;
|
||||
};
|
||||
|
||||
home-manager.users.${username} = import ../../home {
|
||||
inherit
|
||||
|
@ -84,6 +88,7 @@ in
|
|||
inputs
|
||||
stateVersion
|
||||
username
|
||||
lib
|
||||
homeDirectory
|
||||
;
|
||||
};
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
# Reference https://discourse.nixos.org/t/declare-firefox-extensions-and-settings/36265
|
||||
{ ... }:
|
||||
{ lib, config, ... }:
|
||||
{
|
||||
programs.firefox = {
|
||||
enable = true;
|
||||
programs.firefox = lib.mkIf config.programs.firefox.enable {
|
||||
preferencesStatus = "locked";
|
||||
preferences = {
|
||||
"browser.bookmarks.restore_default_bookmarks" = false;
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
{ ... }:
|
||||
{ lib, config, ... }:
|
||||
{
|
||||
programs.thunderbird = {
|
||||
enable = true;
|
||||
programs.thunderbird = lib.mkIf config.programs.thunderbird.enable {
|
||||
preferencesStatus = "locked";
|
||||
preferences = {
|
||||
"mail.biff.play_sound" = false;
|
||||
|
|
Loading…
Add table
Reference in a new issue