mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 13:22:34 +02:00
dead imports
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
{pkgs, ...}: {
|
{
|
||||||
programs.brave = {
|
programs.brave = {
|
||||||
enable = true;
|
enable = true;
|
||||||
commandLineArgs = [
|
commandLineArgs = [
|
||||||
|
|||||||
@@ -10,7 +10,7 @@
|
|||||||
config,
|
config,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
configDirectory = config.var.configDirectory;
|
inherit (config.var) configDirectory;
|
||||||
|
|
||||||
nixy =
|
nixy =
|
||||||
pkgs.writeShellScriptBin "nixy"
|
pkgs.writeShellScriptBin "nixy"
|
||||||
|
|||||||
@@ -198,7 +198,7 @@
|
|||||||
++ [
|
++ [
|
||||||
{
|
{
|
||||||
isRoot = false;
|
isRoot = false;
|
||||||
item = item;
|
inherit item;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
pending = [];
|
pending = [];
|
||||||
@@ -244,7 +244,7 @@
|
|||||||
)
|
)
|
||||||
bookmarkList);
|
bookmarkList);
|
||||||
|
|
||||||
privateBookmarksPath = config.qutebrowser.privateBookmarksPath;
|
inherit (config.qutebrowser) privateBookmarksPath;
|
||||||
in {
|
in {
|
||||||
options.qutebrowser.privateBookmarksPath = lib.mkOption {
|
options.qutebrowser.privateBookmarksPath = lib.mkOption {
|
||||||
type = lib.types.nullOr lib.types.str;
|
type = lib.types.nullOr lib.types.str;
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{...}: {
|
{
|
||||||
programs.qutebrowser.searchEngines = rec {
|
programs.qutebrowser.searchEngines = rec {
|
||||||
startpage = "https://www.startpage.com/sp/search?q={}";
|
startpage = "https://www.startpage.com/sp/search?q={}";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{...}: {
|
{
|
||||||
xdg.dataFile = {
|
xdg.dataFile = {
|
||||||
# Startpage - hide sponsored results
|
# Startpage - hide sponsored results
|
||||||
"qutebrowser/greasemonkey/startpage-no-ads.user.js".source =
|
"qutebrowser/greasemonkey/startpage-no-ads.user.js".source =
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
inputs,
|
inputs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
home = inputs.home-manager.lib.home;
|
inherit (inputs.home-manager.lib) home;
|
||||||
in {
|
in {
|
||||||
imports = [inputs.sops-nix.homeManagerModules.sops];
|
imports = [inputs.sops-nix.homeManagerModules.sops];
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,4 @@
|
|||||||
{
|
{config, ...}: {
|
||||||
pkgs,
|
|
||||||
config,
|
|
||||||
...
|
|
||||||
}: {
|
|
||||||
imports = [
|
imports = [
|
||||||
# Mostly user-specific configuration
|
# Mostly user-specific configuration
|
||||||
./variables.nix
|
./variables.nix
|
||||||
|
|||||||
Reference in New Issue
Block a user