Compare commits
No commits in common. "5c4bf0f023216380941ef1cfc3ff160955131a7b" and "2f9175860ef1d5a6095204eaf1dfce0414ebe135" have entirely different histories.
5c4bf0f023
...
2f9175860e
3 changed files with 5 additions and 30 deletions
|
@ -114,15 +114,7 @@
|
|||
search = {
|
||||
force = true;
|
||||
default = "SearXNG";
|
||||
order = [
|
||||
"SearXNG"
|
||||
"Google"
|
||||
"Wikipedia"
|
||||
"Nix Packages"
|
||||
"NixOS Options"
|
||||
"Home Manager Options"
|
||||
"NixOS Wiki"
|
||||
];
|
||||
order = [ "SearXNG" "Google" "Wikipedia" "Nix Packages" "NixOS Options" "NixOS Wiki" ];
|
||||
engines = {
|
||||
# Nix Package Search
|
||||
"Nix Packages" = {
|
||||
|
@ -133,7 +125,7 @@
|
|||
{ name = "query"; value = "{searchTerms}"; }
|
||||
];
|
||||
}];
|
||||
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||
icon = "''${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||
definedAliases = [ "@np" ];
|
||||
};
|
||||
# NixOS Options Search
|
||||
|
@ -145,18 +137,9 @@
|
|||
{ name = "query"; value = "{searchTerms}"; }
|
||||
];
|
||||
}];
|
||||
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||
icon = "''${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||
definedAliases = [ "@no" ];
|
||||
};
|
||||
# Nix Home-Manager options search
|
||||
"Home Manager Options" = {
|
||||
urls = [{
|
||||
template = "https://home-manager-options.extranix.com";
|
||||
params = [{ name = "query"; value = "{searchTerms}"; }];
|
||||
}];
|
||||
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||
definedAliases = [ "@ho" ];
|
||||
};
|
||||
# NixOS Wiki Search
|
||||
"NixOS Wiki" = {
|
||||
urls = [{ template = "https://nixos.wiki/index.php?search={searchTerms}"; }];
|
||||
|
|
|
@ -1,10 +1,7 @@
|
|||
{ ... }:
|
||||
{
|
||||
# Enable wayland support
|
||||
environment.sessionVariables ={
|
||||
NIXOS_OZONE_WL = "1";
|
||||
STEAM_FORCE_DESKTOPUI_SCALING = "2";
|
||||
};
|
||||
# Enable wayland support for electron apps
|
||||
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
||||
|
||||
# Enable zsh-autocomplete compatibility
|
||||
environment.pathsToLink = [ "/share/zsh" ];
|
||||
|
|
|
@ -13,11 +13,6 @@
|
|||
# Misc
|
||||
vimix-cursors # SDDM Cursor theme
|
||||
];
|
||||
|
||||
programs.steam = {
|
||||
enable = true;
|
||||
extest.enable = true;
|
||||
};
|
||||
|
||||
# Install zsh
|
||||
programs.zsh.enable = true;
|
||||
|
|
Loading…
Reference in a new issue