Stuff
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
|
||||
permittedInsecurePackages = [
|
||||
"electron-25.9.0" # Obsidian
|
||||
"beekeeper-studio-5.3.4"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
@@ -17,28 +17,27 @@
|
||||
obsidian
|
||||
thunderbird
|
||||
libreoffice-qt
|
||||
nerd-fonts.fira-code
|
||||
# pkgs-unstable.nerd-fonts.fira-code
|
||||
hunspell
|
||||
blueberry
|
||||
steam
|
||||
steam-run
|
||||
yuzu-mainline
|
||||
viewnior
|
||||
pkgs-unstable.hyprshot
|
||||
catppuccin-cursors.macchiatoBlue
|
||||
catppuccin-gtk
|
||||
papirus-folders
|
||||
php84Packages.composer
|
||||
php84Packages.xdebug
|
||||
php84Extensions.sqlite3
|
||||
php84Extensions.redis
|
||||
php84Extensions.sodium
|
||||
php84Extensions.pgsql
|
||||
php84Extensions.iconv
|
||||
php84Extensions.gd
|
||||
php84Extensions.zip
|
||||
# pkgs-unstable.php84Packages.composer
|
||||
# pkgs-unstable.php84Packages.xdebug
|
||||
# pkgs-unstable.php84Extensions.sqlite3
|
||||
# pkgs-unstable.php84Extensions.redis
|
||||
# pkgs-unstable.php84Extensions.sodium
|
||||
# pkgs-unstable.php84Extensions.pgsql
|
||||
# pkgs-unstable.php84Extensions.iconv
|
||||
# pkgs-unstable.php84Extensions.gd
|
||||
# pkgs-unstable.php84Extensions.zip
|
||||
php
|
||||
antigravity
|
||||
# antigravity
|
||||
gimp
|
||||
kdePackages.dolphin
|
||||
enpass
|
||||
@@ -57,7 +56,6 @@
|
||||
zathura
|
||||
ghostty
|
||||
wally-cli
|
||||
youtube-dl
|
||||
kdePackages.wacomtablet
|
||||
kdePackages.print-manager
|
||||
mpv
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ inputs, ... }:
|
||||
{ pkgs, inputs, ... }:
|
||||
|
||||
let
|
||||
lock-false = {
|
||||
@@ -69,62 +69,62 @@ in
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
/* ---- PROFILES ---- */
|
||||
# Switch profiles via about:profiles page.
|
||||
# For options that are available in Home-Manager see
|
||||
# https://nix-community.github.io/home-manager/options.html#opt-programs.firefox.profiles
|
||||
profiles ={
|
||||
chris = { # choose a profile name; directory is /home/<user>/.mozilla/firefox/chris
|
||||
id = 0; # 0 is the default profile; see also option "isDefault"
|
||||
name = "chris"; # name as listed in about:profiles
|
||||
isDefault = true; # can be omitted; true if profile ID is 0
|
||||
settings = { # specify profile-specific preferences here; check about:config for options
|
||||
"browser.startup.homepage" = "https://tower.scarif.space";
|
||||
# "browser.newtabpage.pinned" = [{
|
||||
# title = "NixOS";
|
||||
# url = "https://nixos.org";
|
||||
# }];
|
||||
};
|
||||
search = {
|
||||
force = true;
|
||||
default = "holocron";
|
||||
engines = {
|
||||
holocron = {
|
||||
name = "Holocron";
|
||||
urls = [{
|
||||
template = "https://holocron.scarif.space/search";
|
||||
params = [
|
||||
{ name = "q"; value = "{searchTerms}"; }
|
||||
];
|
||||
}];
|
||||
iconUpdateURL = "https://holocron.scarif.space/static/themes/simple/img/favicon.png";
|
||||
definedAliases = [ "@h" ]; # Allows you to type '@s query' in the URL bar
|
||||
/* ---- PROFILES ---- */
|
||||
# Switch profiles via about:profiles page.
|
||||
# For options that are available in Home-Manager see
|
||||
# https://nix-community.github.io/home-manager/options.html#opt-programs.firefox.profiles
|
||||
profiles ={
|
||||
chris = { # choose a profile name; directory is /home/<user>/.mozilla/firefox/chris
|
||||
id = 0; # 0 is the default profile; see also option "isDefault"
|
||||
name = "chris"; # name as listed in about:profiles
|
||||
isDefault = true; # can be omitted; true if profile ID is 0
|
||||
settings = { # specify profile-specific preferences here; check about:config for options
|
||||
"browser.startup.homepage" = "https://tower.scarif.space";
|
||||
# "browser.newtabpage.pinned" = [{
|
||||
# title = "NixOS";
|
||||
# url = "https://nixos.org";
|
||||
# }];
|
||||
};
|
||||
search = {
|
||||
force = true;
|
||||
default = "holocron";
|
||||
engines = {
|
||||
holocron = {
|
||||
name = "Holocron";
|
||||
urls = [{
|
||||
template = "https://holocron.scarif.space/search";
|
||||
params = [
|
||||
{ name = "q"; value = "{searchTerms}"; }
|
||||
];
|
||||
}];
|
||||
iconUpdateURL = "https://holocron.scarif.space/static/themes/simple/img/favicon.png";
|
||||
definedAliases = [ "@h" ]; # Allows you to type '@s query' in the URL bar
|
||||
};
|
||||
nix-packages = {
|
||||
name = "Nix Packages";
|
||||
urls = [{
|
||||
template = "https://search.nixos.org/packages";
|
||||
params = [
|
||||
{ name = "type"; value = "packages"; }
|
||||
{ name = "query"; value = "{searchTerms}"; }
|
||||
];
|
||||
}];
|
||||
|
||||
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||
definedAliases = [ "@np" ];
|
||||
};
|
||||
|
||||
nixos-wiki = {
|
||||
name = "NixOS Wiki";
|
||||
urls = [{ template = "https://wiki.nixos.org/w/index.php?search={searchTerms}"; }];
|
||||
iconMapObj."16" = "https://wiki.nixos.org/favicon.ico";
|
||||
definedAliases = [ "@nw" ];
|
||||
};
|
||||
|
||||
bing.metaData.hidden = true;
|
||||
google.metaData.alias = "@g"; # builtin engines only support specifying one additional alias
|
||||
};
|
||||
nix-packages = {
|
||||
name = "Nix Packages";
|
||||
urls = [{
|
||||
template = "https://search.nixos.org/packages";
|
||||
params = [
|
||||
{ name = "type"; value = "packages"; }
|
||||
{ name = "query"; value = "{searchTerms}"; }
|
||||
];
|
||||
}];
|
||||
|
||||
icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
|
||||
definedAliases = [ "@np" ];
|
||||
};
|
||||
|
||||
nixos-wiki = {
|
||||
name = "NixOS Wiki";
|
||||
urls = [{ template = "https://wiki.nixos.org/w/index.php?search={searchTerms}"; }];
|
||||
iconMapObj."16" = "https://wiki.nixos.org/favicon.ico";
|
||||
definedAliases = [ "@nw" ];
|
||||
};
|
||||
|
||||
bing.metaData.hidden = true;
|
||||
google.metaData.alias = "@g"; # builtin engines only support specifying one additional alias
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user