Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mrjones2014/dotfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjones2014 committed May 30, 2024
2 parents 44c75de + 8449f0f commit 2799a01
Show file tree
Hide file tree
Showing 8 changed files with 19 additions and 62 deletions.
1 change: 0 additions & 1 deletion home-manager/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@
./modules/arkenfox.nix
./shared.nix
./modules/_1password-shell.nix
./modules/rofi.nix
./modules/espanso.nix
./modules/wezterm.nix
./modules/librewolf.nix
Expand Down
11 changes: 11 additions & 0 deletions home-manager/modules/arkenfox.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{ inputs, isLinux, ... }: {
imports = [ inputs.arkenfox.hmModules.default ];
# TODO this doesn't work
home.file.".local/share/gnome-shell/search-providers/firefox-search-provider.ini".text =
''
[Shell Search Provider]
DesktopId=firefox.desktop
BusName=org.mozilla.Firefox.SearchProvider
ObjectPath=/org/mozilla/Firefox/SearchProvider
Version=2
'';
programs.firefox = {
enable = isLinux;
arkenfox = {
Expand All @@ -15,6 +24,8 @@
"browser.urlbar.suggest.pocket" = false;
# always show bookmarks toolbar
"browser.toolbars.bookmarks.visibility" = "always";
# GNOME search provider
"browser.gnome-search-provider.enabled" = true;
};
arkenfox = {
enable = isLinux;
Expand Down
5 changes: 5 additions & 0 deletions home-manager/modules/gnome/dconf.nix
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ in {
"[email protected]"
"no-overview@fthx"
"gTile@vibou"
"[email protected]"
"[email protected]"
];
};
"org/gnome/desktop/interface" = {
Expand Down Expand Up @@ -64,5 +66,8 @@ in {
move-to-monitor-down = [ "<Shift><Control><Alt>j" ];
};
"org/gnome/desktop/peripherals/touchpad" = { send-events = "enabled"; };
"org/gnome/shell/extensions/search-light" = {
shortcut-search = [ "<Super>space" ];
};
};
}
1 change: 0 additions & 1 deletion home-manager/modules/gnome/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
MimeType=x-scheme-handler/sgnl;x-scheme-handler/signalcaptcha;
Categories=Network;InstantMessaging;Chat;
'';
home.packages = [ pkgs.flameshot ];
gtk = {
gtk2 = {
configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
Expand Down
56 changes: 0 additions & 56 deletions home-manager/modules/rofi.nix

This file was deleted.

4 changes: 1 addition & 3 deletions home-manager/modules/wezterm.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ in {
local os_name = ${if isLinux then "'linux'" else "'macos'"}
local smart_splits = wezterm.plugin.require('https://github.com/mrjones2014/smart-splits.nvim')
-- macOS specific settings
-- this setting behaves weirdly on linux
config.hide_mouse_cursor_when_typing = os_name == 'macos'
config.hide_mouse_cursor_when_typing = true
if os_name == 'macos' then
config.window_decorations = 'RESIZE'
end
Expand Down
2 changes: 2 additions & 0 deletions nixos-modules/desktop_environment.nix
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
tray-icons-reloaded
no-overview
gtile
search-light
quick-web-search
];
};
}
1 change: 0 additions & 1 deletion nixos-modules/theme.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ in {
programs = {
# My Neovim Lua is not generated by Nix
neovim.tokyonight.enable = false;
rofi.tokyonight.variant = "big1";
};
})
];
Expand Down

0 comments on commit 2799a01

Please sign in to comment.