poe
This commit is contained in:
parent
fc749306a0
commit
ef45e9c6c9
4 changed files with 14 additions and 9 deletions
|
|
@ -1,11 +1,6 @@
|
||||||
{ pkgs, arkenfox, ...}: {
|
{ pkgs, arkenfox, ...}: {
|
||||||
imports = [arkenfox.hmModules.arkenfox];
|
imports = [arkenfox.hmModules.arkenfox];
|
||||||
|
|
||||||
home.file.".mozilla/firefox/ChatGPT/chrome/userChrome.css".text = ''
|
|
||||||
#TabsToolbar { visibility: collapse !important; }
|
|
||||||
#nav-bar { visibility: collapse !important; }
|
|
||||||
'';
|
|
||||||
|
|
||||||
programs.firefox = {
|
programs.firefox = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
|
@ -27,7 +22,6 @@
|
||||||
OfferToSaveLogins = false;
|
OfferToSaveLogins = false;
|
||||||
PasswordManagerEnabled = false;
|
PasswordManagerEnabled = false;
|
||||||
|
|
||||||
DisablePrivateBrowsing = true;
|
|
||||||
DisableSetDesktopBackground = true;
|
DisableSetDesktopBackground = true;
|
||||||
DisableTelemetry = true;
|
DisableTelemetry = true;
|
||||||
DisableFirefoxScreenshots = true;
|
DisableFirefoxScreenshots = true;
|
||||||
|
|
@ -42,8 +36,6 @@
|
||||||
SearchBar = "unified";
|
SearchBar = "unified";
|
||||||
SearchSuggestEnabled = false;
|
SearchSuggestEnabled = false;
|
||||||
DownloadDirectory = "/home/lilith/sync/inbox";
|
DownloadDirectory = "/home/lilith/sync/inbox";
|
||||||
|
|
||||||
SanitizeOnShutdown = true;
|
|
||||||
|
|
||||||
Containers = {
|
Containers = {
|
||||||
"Default" = [
|
"Default" = [
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,6 @@
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
"$terminal" = "alacritty";
|
"$terminal" = "alacritty";
|
||||||
"$fileManager" = "alacritty -e ranger";
|
|
||||||
|
|
||||||
env = [
|
env = [
|
||||||
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
|
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
|
||||||
|
|
|
||||||
|
|
@ -18,5 +18,6 @@
|
||||||
./syncthing.nix
|
./syncthing.nix
|
||||||
./wayland.nix
|
./wayland.nix
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
|
./poe.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
13
system/poe.nix
Normal file
13
system/poe.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
let
|
||||||
|
awakened-poe-trade = import (builtins.fetchGit { url = "https://github.com/hukasu/awakened-poe-trade-nix"; ref = "refs/tags/v0.0.3"; });
|
||||||
|
in {
|
||||||
|
environment.systemPackages = [
|
||||||
|
# This is the to add the application
|
||||||
|
awakened-poe-trade.app
|
||||||
|
# Add this to add a Desktop Item
|
||||||
|
# This requires the `app`, but the way it's setup right now,
|
||||||
|
# it does not install the `app` automatically
|
||||||
|
awakened-poe-trade.desktop
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue