···4848 nr = "nix run";
4949 nd = "nix develop";
5050 };
5151- shellInit = /* bash */ ''
5252- export ATUIN_NOBIND="true"
5353- eval "$(${pkgs.atuin}/bin/atuin init bash)"
5454- bindkey '^r' _atuin_search_widget
5151+ shellInit = # bash
5252+ ''
5353+ export ATUIN_NOBIND="true"
5454+ eval "$(${pkgs.atuin}/bin/atuin init bash)"
5555+ bindkey '^r' _atuin_search_widget
555656575757- youcannotrebuild () {
5858- ${
5959- let
6060- inherit (lib.strings)
6161- hasInfix;
6262- inherit (pkgs.hostPlatform)
6363- isx86_64 isAarch64
6464- isLinux isDarwin;
6565- in
6666- if isx86_64 && isLinux then
6767- "sudo --validate && sudo nixos-rebuild"
6868- else if isDarwin then
6969- "darwin-rebuild"
7070- else if isAarch64 then
7171- "nix-on-droid"
7272- else
7373- "home-manager" # what is this? plain home-manager, works on every system? ye, like wsl, not darwin, not nixos, not android :holeymoley: havent used yes on such a system but in theory all home mnanager modules would work on it aha. alr alr :hm:
7474- } --flake ~/tix ''$''\{1:-switch''\} "''$''\{@:2''\}" |& nix run nixpkgs#nix-output-monitor
7575- }
7676- '';
5858+ youcannotrebuild () {
5959+ ${
6060+ let
6161+ inherit (lib.strings)
6262+ hasInfix
6363+ ;
6464+ inherit (pkgs.hostPlatform)
6565+ isx86_64
6666+ isAarch64
6767+ isLinux
6868+ isDarwin
6969+ ;
7070+ in
7171+ if isx86_64 && isLinux then
7272+ "sudo --validate && sudo nixos-rebuild"
7373+ else if isDarwin then
7474+ "darwin-rebuild"
7575+ else if isAarch64 then
7676+ "nix-on-droid"
7777+ else
7878+ "home-manager" # what is this? plain home-manager, works on every system? ye, like wsl, not darwin, not nixos, not android :holeymoley: havent used yes on such a system but in theory all home mnanager modules would work on it aha. alr alr :hm:
7979+ } --flake ~/tix ''$''\{1:-switch''\} "''$''\{@:2''\}" |& nix run nixpkgs#nix-output-monitor
8080+ }
8181+ '';
7782 blesh.enable = true;
7883 };
7984}
+4-2
modules/nixos/programs/firefox/default.nix
···44 pkgs,
55 self,
66 ...
77-}: let
77+}:
88+let
89 lock-false = {
910 Value = false;
1011 Status = "locked";
···1718 Value = "";
1819 Status = "locked";
1920 };
2020-in {
2121+in
2222+{
2123 programs.firefox = {
2224 enable = true;
2325