nix-community/nix-doom-emacs

No such file or directory, default.el

Skarlett opened this issue · 1 comments

Unable to install nix-doom-emacs from NixOS+Home-manager guide. Please review the actions below, I believe this to be a bug more so than my configuration. Any help is appreciated.

Operation commited

ln -s /etc/nixos/doom ~/.doom.d

sudo nixos-rebuild --flake /etc/nixos#test switch

emacs &

Error

Warning (initialization): An error occurred while loading ‘/home/lunarix/.emacs.d/init.el’:Warning (initialization): An error occurred while loading ‘/home/lunarix/.emacs.d/init.el’:
File is missing: Cannot open load file, No such file or directory, default.el

Point of failure

https://github.com/nix-community/nix-doom-emacs/blob/master/modules/home-manager.nix#L117-L119

home.nix

# home.nix
{ config, lib, pkgs, nix-doom-emacs, ... }:
{
   imports = [ nix-doom-emacs.hmModule ];
   programs.doom-emacs = {
     enable = true;
     doomPrivateDir = ./doom; # In source-tree
   };
}

flake.nix

{
  description = "Test";

  inputs = {
     hm.url = "github:nix-community/home-manager/release-22.05"; # 22.11 marked as not available.
     nix-doom-emacs.url = "github:nix-community/nix-doom-emacs";
     nixpkgs.url = "github:nixos/nixpkgs/nixos-22.11"; 
  };

  outputs = { self, nix-doom-emacs, ... }@inputs:
    {
       nixosConfigurations.test = nixpkgs.lib.nixosSystem {
            system = "x86_64-linux";
            specialArgs = {};
            modules = [
              ./configuration.nix
              hm.nixosModules.home-manager
              {
                home-manager.useGlobalPkgs = true;
                home-manager.useUserPackages = true;
                home-manager.users.lunarix = import ./home.nix ;
                home-manager.extraSpecialArgs = {
                  inherit nix-doom-emacs;
                };
              }
          ];
       };
    };
}

load-path

C-h v load-path RET

("/run/current-system/sw/share/emacs/site-lisp/" "/etc/profiles/per-user/lunarix/share/emacs/site-lisp/" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/site-lisp" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/site-lisp" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/vc" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/url" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/textmodes" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/progmodes" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/play" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/org" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/nxml" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/net" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/mh-e" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/mail" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/leim" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/language" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/international" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/image" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/gnus" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/eshell" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/erc" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/emulation" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/emacs-lisp" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/cedet" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/calendar" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/calc" "/nix/store/liqmbkicpba12zpdqkyww347l96jz6x2-emacs-28.2/share/emacs/28.2/lisp/obsolete")

flake.lock

{
  "nodes": {
    "deploy-rs": {
      "inputs": {
        "flake-compat": "flake-compat",
        "nixpkgs": "nixpkgs",
        "utils": "utils"
      },
      "locked": {
        "lastModified": 1683255183,
        "narHash": "sha256-UUxpb5PMkFfP2JGoPMEUvKbxv+wCkTWy4uZs1MyyCes=",
        "owner": "serokell",
        "repo": "deploy-rs",
        "rev": "6b0b6a1c2527e8b1ef370a308b6ef8903004ac47",
        "type": "github"
      },
      "original": {
        "owner": "serokell",
        "repo": "deploy-rs",
        "type": "github"
      }
    },
    "doom-emacs": {
      "flake": false,
      "locked": {
        "lastModified": 1662497747,
        "narHash": "sha256-4n7E1fqda7cn5/F2jTkOnKw1juG6XMS/FI9gqODL3aU=",
        "owner": "doomemacs",
        "repo": "doomemacs",
        "rev": "3853dff5e11655e858d0bfae64b70cb12ef685ac",
        "type": "github"
      },
      "original": {
        "owner": "doomemacs",
        "repo": "doomemacs",
        "rev": "3853dff5e11655e858d0bfae64b70cb12ef685ac",
        "type": "github"
      }
    },
    "doom-snippets": {
      "flake": false,
      "locked": {
        "lastModified": 1676839496,
        "narHash": "sha256-1Ay9zi0u1lycmEeFqIxr0RWH+JvH9BnzgRzkPeWEAYY=",
        "owner": "doomemacs",
        "repo": "snippets",
        "rev": "fe4003014ae00b866f117cb193f711fd9d72fd11",
        "type": "github"
      },
      "original": {
        "owner": "doomemacs",
        "repo": "snippets",
        "type": "github"
      }
    },
    "emacs-overlay": {
      "flake": false,
      "locked": {
        "lastModified": 1676366521,
        "narHash": "sha256-i4UAY8t9Au9SJtsgYppa3NHSVf1YkV6yqnNIQd+Km4g=",
        "owner": "nix-community",
        "repo": "emacs-overlay",
        "rev": "c16be6de78ea878aedd0292aa5d4a1ee0a5da501",
        "type": "github"
      },
      "original": {
        "owner": "nix-community",
        "repo": "emacs-overlay",
        "rev": "c16be6de78ea878aedd0292aa5d4a1ee0a5da501",
        "type": "github"
      }
    },
    "emacs-so-long": {
      "flake": false,
      "locked": {
        "lastModified": 1575031854,
        "narHash": "sha256-xIa5zO0ZaToDrec1OFjBK6l39AbA4l/CE4LInVu2hi0=",
        "owner": "hlissner",
        "repo": "emacs-so-long",
        "rev": "ed666b0716f60e8988c455804de24b55919e71ca",
        "type": "github"
      },
      "original": {
        "owner": "hlissner",
        "repo": "emacs-so-long",
        "type": "github"
      }
    },
    "evil-escape": {
      "flake": false,
      "locked": {
        "lastModified": 1588439096,
        "narHash": "sha256-aB2Ge5o/93B18tPf4fN1c+O46CNh/nOqwLJbox4c8Gw=",
        "owner": "hlissner",
        "repo": "evil-escape",
        "rev": "819f1ee1cf3f69a1ae920e6004f2c0baeebbe077",
        "type": "github"
      },
      "original": {
        "owner": "hlissner",
        "repo": "evil-escape",
        "type": "github"
      }
    },
    "evil-markdown": {
      "flake": false,
      "locked": {
        "lastModified": 1626852210,
        "narHash": "sha256-HBBuZ1VWIn6kwK5CtGIvHM1+9eiNiKPH0GUsyvpUVN8=",
        "owner": "Somelauw",
        "repo": "evil-markdown",
        "rev": "8e6cc68af83914b2fa9fd3a3b8472573dbcef477",
        "type": "github"
      },
      "original": {
        "owner": "Somelauw",
        "repo": "evil-markdown",
        "type": "github"
      }
    },
    "evil-org-mode": {
      "flake": false,
      "locked": {
        "lastModified": 1607203864,
        "narHash": "sha256-JxwqVYDN6OIJEH15MVI6XOZAPtUWUhJQWHyzcrUvrFg=",
        "owner": "hlissner",
        "repo": "evil-org-mode",
        "rev": "a9706da260c45b98601bcd72b1d2c0a24a017700",
        "type": "github"
      },
      "original": {
        "owner": "hlissner",
        "repo": "evil-org-mode",
        "type": "github"
      }
    },
    "evil-quick-diff": {
      "flake": false,
      "locked": {
        "lastModified": 1575189609,
        "narHash": "sha256-oGzl1ayW9rIuq0haoiFS7RZsS8NFMdEA7K1BSozgnJU=",
        "owner": "rgrinberg",
        "repo": "evil-quick-diff",
        "rev": "69c883720b30a892c63bc89f49d4f0e8b8028908",
        "type": "github"
      },
      "original": {
        "owner": "rgrinberg",
        "repo": "evil-quick-diff",
        "type": "github"
      }
    },
    "explain-pause-mode": {
      "flake": false,
      "locked": {
        "lastModified": 1595842060,
        "narHash": "sha256-++znrjiDSx+cy4okFBBXUBkRFdtnE2x+trkmqjB3Njs=",
        "owner": "lastquestion",
        "repo": "explain-pause-mode",
        "rev": "2356c8c3639cbeeb9751744dbe737267849b4b51",
        "type": "github"
      },
      "original": {
        "owner": "lastquestion",
        "repo": "explain-pause-mode",
        "type": "github"
      }
    },
    "flake-compat": {
      "flake": false,
      "locked": {
        "lastModified": 1668681692,
        "narHash": "sha256-Ht91NGdewz8IQLtWZ9LCeNXMSXHUss+9COoqu6JLmXU=",
        "owner": "edolstra",
        "repo": "flake-compat",
        "rev": "009399224d5e398d03b22badca40a37ac85412a1",
        "type": "github"
      },
      "original": {
        "owner": "edolstra",
        "repo": "flake-compat",
        "type": "github"
      }
    },
    "flake-compat_2": {
      "flake": false,
      "locked": {
        "lastModified": 1673956053,
        "narHash": "sha256-4gtG9iQuiKITOjNQQeQIpoIB6b16fm+504Ch3sNKLd8=",
        "owner": "edolstra",
        "repo": "flake-compat",
        "rev": "35bb57c0c8d8b62bbfd284272c928ceb64ddbde9",
        "type": "github"
      },
      "original": {
        "owner": "edolstra",
        "repo": "flake-compat",
        "type": "github"
      }
    },
    "flake-compat_3": {
      "flake": false,
      "locked": {
        "lastModified": 1673956053,
        "narHash": "sha256-4gtG9iQuiKITOjNQQeQIpoIB6b16fm+504Ch3sNKLd8=",
        "owner": "edolstra",
        "repo": "flake-compat",
        "rev": "35bb57c0c8d8b62bbfd284272c928ceb64ddbde9",
        "type": "github"
      },
      "original": {
        "owner": "edolstra",
        "repo": "flake-compat",
        "type": "github"
      }
    },
    "flake-utils": {
      "inputs": {
        "systems": "systems"
      },
      "locked": {
        "lastModified": 1681202837,
        "narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=",
        "owner": "numtide",
        "repo": "flake-utils",
        "rev": "cfacdce06f30d2b68473a46042957675eebb3401",
        "type": "github"
      },
      "original": {
        "owner": "numtide",
        "repo": "flake-utils",
        "type": "github"
      }
    },
    "flake-utils_2": {
      "inputs": {
        "systems": "systems_2"
      },
      "locked": {
        "lastModified": 1681202837,
        "narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=",
        "owner": "numtide",
        "repo": "flake-utils",
        "rev": "cfacdce06f30d2b68473a46042957675eebb3401",
        "type": "github"
      },
      "original": {
        "owner": "numtide",
        "repo": "flake-utils",
        "type": "github"
      }
    },
    "flake-utils_3": {
      "inputs": {
        "systems": "systems_3"
      },
      "locked": {
        "lastModified": 1681202837,
        "narHash": "sha256-H+Rh19JDwRtpVPAWp64F+rlEtxUWBAQW28eAi3SRSzg=",
        "owner": "numtide",
        "repo": "flake-utils",
        "rev": "cfacdce06f30d2b68473a46042957675eebb3401",
        "type": "github"
      },
      "original": {
        "owner": "numtide",
        "repo": "flake-utils",
        "type": "github"
      }
    },
    "format-all": {
      "flake": false,
      "locked": {
        "lastModified": 1581716637,
        "narHash": "sha256-ul7LCe60W8TIvUmUtZtZRo8489TK9iTPDsLHmzxY57M=",
        "owner": "lassik",
        "repo": "emacs-format-all-the-code",
        "rev": "47d862d40a088ca089c92cd393c6dca4628f87d3",
        "type": "github"
      },
      "original": {
        "owner": "lassik",
        "repo": "emacs-format-all-the-code",
        "rev": "47d862d40a088ca089c92cd393c6dca4628f87d3",
        "type": "github"
      }
    },
    "hm": {
      "inputs": {
        "nixpkgs": "nixpkgs_2"
      },
      "locked": {
        "lastModified": 1667907331,
        "narHash": "sha256-bHkAwkYlBjkupPUFcQjimNS8gxWSWjOTevEuwdnp5m0=",
        "owner": "nix-community",
        "repo": "home-manager",
        "rev": "6639e3a837fc5deb6f99554072789724997bc8e5",
        "type": "github"
      },
      "original": {
        "owner": "nix-community",
        "ref": "release-22.05",
        "repo": "home-manager",
        "type": "github"
      }
    },
    "impermanence": {
      "locked": {
        "lastModified": 1682268411,
        "narHash": "sha256-ICDKQ7tournRVtfM8C2II0qHiOZOH1b3dXVOCsgr11o=",
        "owner": "nix-community",
        "repo": "impermanence",
        "rev": "df1692e2d9f1efc4300b1ea9201831730e0b817d",
        "type": "github"
      },
      "original": {
        "owner": "nix-community",
        "repo": "impermanence",
        "type": "github"
      }
    },
    "nix-alien": {
      "inputs": {
        "flake-compat": "flake-compat_2",
        "flake-utils": "flake-utils_2",
        "nix-index-database": "nix-index-database",
        "nixpkgs": "nixpkgs_3"
      },
      "locked": {
        "lastModified": 1683040670,
        "narHash": "sha256-mw0dqtO74I7eCQ02zyDM3kQwkfEq/Fy+oXAEcNbxneI=",
        "owner": "thiagokokada",
        "repo": "nix-alien",
        "rev": "c40f854463e11beb5c95ec07c6872d8e34088cb7",
        "type": "github"
      },
      "original": {
        "owner": "thiagokokada",
        "repo": "nix-alien",
        "type": "github"
      }
    },
    "nix-doom-emacs": {
      "inputs": {
        "doom-emacs": "doom-emacs",
        "doom-snippets": "doom-snippets",
        "emacs-overlay": "emacs-overlay",
        "emacs-so-long": "emacs-so-long",
        "evil-escape": "evil-escape",
        "evil-markdown": "evil-markdown",
        "evil-org-mode": "evil-org-mode",
        "evil-quick-diff": "evil-quick-diff",
        "explain-pause-mode": "explain-pause-mode",
        "flake-compat": "flake-compat_3",
        "flake-utils": "flake-utils_3",
        "format-all": "format-all",
        "nix-straight": "nix-straight",
        "nixpkgs": "nixpkgs_4",
        "nose": "nose",
        "ob-racket": "ob-racket",
        "org": "org",
        "org-contrib": "org-contrib",
        "org-yt": "org-yt",
        "php-extras": "php-extras",
        "revealjs": "revealjs",
        "rotate-text": "rotate-text",
        "sln-mode": "sln-mode",
        "ts-fold": "ts-fold",
        "ws-butler": "ws-butler"
      },
      "locked": {
        "lastModified": 1683249650,
        "narHash": "sha256-NwBzz2CHNtT0oDqAGewByQ5OFnAWf+ewHUrK0F44xZk=",
        "owner": "nix-community",
        "repo": "nix-doom-emacs",
        "rev": "588ccf37fa9eb9d2ec787b91c989dcd6892983e9",
        "type": "github"
      },
      "original": {
        "owner": "nix-community",
        "repo": "nix-doom-emacs",
        "type": "github"
      }
    },
    "nix-index-database": {
      "inputs": {
        "nixpkgs": [
          "nix-alien",
          "nixpkgs"
        ]
      },
      "locked": {
        "lastModified": 1681460490,
        "narHash": "sha256-uA5IvXUPV3LboIyjGrPYvNuaShxWR7hDjZC6aXY5z4o=",
        "owner": "Mic92",
        "repo": "nix-index-database",
        "rev": "375ed1ce48ee67f528fda03acdf99fd542df41c6",
        "type": "github"
      },
      "original": {
        "owner": "Mic92",
        "repo": "nix-index-database",
        "type": "github"
      }
    },
    "nix-ld": {
      "inputs": {
        "nixpkgs": "nixpkgs_5",
        "utils": "utils_2"
      },
      "locked": {
        "lastModified": 1682533818,
        "narHash": "sha256-2Fzjk3jL7rlyLjPKWy05zU8SGm04M3mbzohk51vkw3Y=",
        "owner": "Mic92",
        "repo": "nix-ld",
        "rev": "29f15b1f7e37810689974ef169496c51f6403a1b",
        "type": "github"
      },
      "original": {
        "owner": "Mic92",
        "ref": "main",
        "repo": "nix-ld",
        "type": "github"
      }
    },
    "nix-straight": {
      "flake": false,
      "locked": {
        "lastModified": 1666982610,
        "narHash": "sha256-xjgIrmUsekVTE+MpZb5DMU8DQf9DJ/ZiR0o30L9/XCc=",
        "owner": "nix-community",
        "repo": "nix-straight.el",
        "rev": "ad10364d64f472c904115fd38d194efe1c3f1226",
        "type": "github"
      },
      "original": {
        "owner": "nix-community",
        "repo": "nix-straight.el",
        "type": "github"
      }
    },
    "nixpkgs": {
      "locked": {
        "lastModified": 1671417167,
        "narHash": "sha256-JkHam6WQOwZN1t2C2sbp1TqMv3TVRjzrdoejqfefwrM=",
        "owner": "NixOS",
        "repo": "nixpkgs",
        "rev": "bb31220cca6d044baa6dc2715b07497a2a7c4bc7",
        "type": "github"
      },
      "original": {
        "owner": "NixOS",
        "ref": "nixpkgs-unstable",
        "repo": "nixpkgs",
        "type": "github"
      }
    },
    "nixpkgs-unstable": {
      "locked": {
        "lastModified": 1683194677,
        "narHash": "sha256-Am7aCGNy/h6RMnvg7Pn4PHQXZZq9FyIUA9klYxBwyDI=",
        "owner": "NixOS",
        "repo": "nixpkgs",
        "rev": "0d8145a5d81ebf6698077b21042380a3a66a11c7",
        "type": "github"
      },
      "original": {
        "id": "nixpkgs",
        "ref": "nixos-unstable",
        "type": "indirect"
      }
    },
    "nixpkgs_2": {
      "locked": {
        "lastModified": 1684585791,
        "narHash": "sha256-lYPboblKrchmbkGMoAcAivomiOscZCjtGxxTSCY51SM=",
        "owner": "NixOS",
        "repo": "nixpkgs",
        "rev": "eea79d584eff53bf7a76aeb63f8845da6d386129",
        "type": "github"
      },
      "original": {
        "id": "nixpkgs",
        "type": "indirect"
      }
    },
    "nixpkgs_3": {
      "locked": {
        "lastModified": 1681510139,
        "narHash": "sha256-pmZoMRkTxEp/EIqUPScTUOOhpPOSLJSL4eahsiP2mxI=",
        "owner": "NixOS",
        "repo": "nixpkgs",
        "rev": "639d4f17218568afd6494dbd807bebb2beb9d6b3",
        "type": "github"
      },
      "original": {
        "owner": "NixOS",
        "ref": "nixpkgs-unstable",
        "repo": "nixpkgs",
        "type": "github"
      }
    },
    "nixpkgs_4": {
      "locked": {
        "lastModified": 1682566018,
        "narHash": "sha256-HPzPRFiy2o/7k7mtnwfM1E6NVZHiFbPdmYCMoIpkHO4=",
        "owner": "NixOS",
        "repo": "nixpkgs",
        "rev": "8e3b64db39f2aaa14b35ee5376bd6a2e707cadc2",
        "type": "github"
      },
      "original": {
        "id": "nixpkgs",
        "ref": "nixpkgs-unstable",
        "type": "indirect"
      }
    },
    "nixpkgs_5": {
      "locked": {
        "lastModified": 1671467162,
        "narHash": "sha256-1MRYdkLH7vyz9A/69KeDE+4RaEI6D83GfuJLMOGjN/8=",
        "owner": "NixOS",
        "repo": "nixpkgs",
        "rev": "9bf4ec690947311dd0b080bb8d86a3019d5f4f24",
        "type": "github"
      },
      "original": {
        "owner": "NixOS",
        "repo": "nixpkgs",
        "type": "github"
      }
    },
    "nixpkgs_6": {
      "locked": {
        "lastModified": 1683207485,
        "narHash": "sha256-gs+PHt/y/XQB7S8+YyBLAM8LjgYpPZUVFQBwpFSmJro=",
        "owner": "nixos",
        "repo": "nixpkgs",
        "rev": "cc45a3f8c98e1c33ca996e3504adefbf660a72d1",
        "type": "github"
      },
      "original": {
        "owner": "nixos",
        "ref": "nixos-22.11",
        "repo": "nixpkgs",
        "type": "github"
      }
    },
    "nose": {
      "flake": false,
      "locked": {
        "lastModified": 1400604510,
        "narHash": "sha256-daEi8Kta1oGaDEmUUDDQMahTTPOpvNpDKk22rlr7cB0=",
        "owner": "emacsattic",
        "repo": "nose",
        "rev": "f8528297519eba911696c4e68fa88892de9a7b72",
        "type": "github"
      },
      "original": {
        "owner": "emacsattic",
        "repo": "nose",
        "type": "github"
      }
    },
    "ob-racket": {
      "flake": false,
      "locked": {
        "lastModified": 1584656173,
        "narHash": "sha256-rBUYDDCXb+3D4xTPQo9UocbTPZ32kWV1Uya/1DmZknU=",
        "owner": "xchrishawk",
        "repo": "ob-racket",
        "rev": "83457ec9e1e96a29fd2086ed19432b9d75787673",
        "type": "github"
      },
      "original": {
        "owner": "xchrishawk",
        "repo": "ob-racket",
        "type": "github"
      }
    },
    "org": {
      "flake": false,
      "locked": {
        "lastModified": 1683136293,
        "narHash": "sha256-PMHNr3Qo62uqO5IUDAfxUoqa4Zvb9y2J76pRYDB/6Y4=",
        "owner": "emacs-straight",
        "repo": "org-mode",
        "rev": "080710797ad25e76c4556d2b03cc0aa5313cd187",
        "type": "github"
      },
      "original": {
        "owner": "emacs-straight",
        "repo": "org-mode",
        "type": "github"
      }
    },
    "org-contrib": {
      "flake": false,
      "locked": {
        "lastModified": 1675694242,
        "narHash": "sha256-4Fn33CTVTCqh5TyVAggSr8Fm8/hB8Xgl+hkxh3WCrI8=",
        "owner": "emacsmirror",
        "repo": "org-contrib",
        "rev": "fff6c888065588527b1c1d7dd7e41c29ef767e17",
        "type": "github"
      },
      "original": {
        "owner": "emacsmirror",
        "repo": "org-contrib",
        "type": "github"
      }
    },
    "org-yt": {
      "flake": false,
      "locked": {
        "lastModified": 1527381913,
        "narHash": "sha256-dzQ6B7ryzatHCTLyEnRSbWO0VUiX/FHYnpHTs74aVUs=",
        "owner": "TobiasZawada",
        "repo": "org-yt",
        "rev": "40cc1ac76d741055cbefa13860d9f070a7ade001",
        "type": "github"
      },
      "original": {
        "owner": "TobiasZawada",
        "repo": "org-yt",
        "type": "github"
      }
    },
    "php-extras": {
      "flake": false,
      "locked": {
        "lastModified": 1573312690,
        "narHash": "sha256-r4WyVbzvT0ra4Z6JywNBOw5RxOEYd6Qe2IpebHXkj1U=",
        "owner": "arnested",
        "repo": "php-extras",
        "rev": "d410c5af663c30c01d461ac476d1cbfbacb49367",
        "type": "github"
      },
      "original": {
        "owner": "arnested",
        "repo": "php-extras",
        "type": "github"
      }
    },
    "revealjs": {
      "flake": false,
      "locked": {
        "lastModified": 1681386605,
        "narHash": "sha256-9Q7aWgjAV37iJp6oYDz45e8J+RKwKY1Uvgg/BXwf5nQ=",
        "owner": "hakimel",
        "repo": "reveal.js",
        "rev": "0301ce58ab185f7191696e16b1b6389f58df2892",
        "type": "github"
      },
      "original": {
        "owner": "hakimel",
        "repo": "reveal.js",
        "type": "github"
      }
    },
    "root": {
      "inputs": {
        "deploy-rs": "deploy-rs",
        "flake-utils": "flake-utils",
        "hm": "hm",
        "impermanence": "impermanence",
        "nix-alien": "nix-alien",
        "nix-doom-emacs": "nix-doom-emacs",
        "nix-ld": "nix-ld",
        "nixpkgs": "nixpkgs_6",
        "nixpkgs-unstable": "nixpkgs-unstable"
      }
    },
    "rotate-text": {
      "flake": false,
      "locked": {
        "lastModified": 1322962747,
        "narHash": "sha256-SOeOgSlcEIsKhUiYDJv0p+mLUb420s9E2BmvZQvZ0wk=",
        "owner": "debug-ito",
        "repo": "rotate-text.el",
        "rev": "48f193697db996855aee1ad2bc99b38c6646fe76",
        "type": "github"
      },
      "original": {
        "owner": "debug-ito",
        "repo": "rotate-text.el",
        "type": "github"
      }
    },
    "sln-mode": {
      "flake": false,
      "locked": {
        "lastModified": 1423727528,
        "narHash": "sha256-XqkqPyEJuTtFslOz1fpTf/Klbd/zA7IGpzpmum/MGao=",
        "owner": "sensorflo",
        "repo": "sln-mode",
        "rev": "0f91d1b957c7d2a7bab9278ec57b54d57f1dbd9c",
        "type": "github"
      },
      "original": {
        "owner": "sensorflo",
        "repo": "sln-mode",
        "type": "github"
      }
    },
    "systems": {
      "locked": {
        "lastModified": 1681028828,
        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
        "owner": "nix-systems",
        "repo": "default",
        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
        "type": "github"
      },
      "original": {
        "owner": "nix-systems",
        "repo": "default",
        "type": "github"
      }
    },
    "systems_2": {
      "locked": {
        "lastModified": 1681028828,
        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
        "owner": "nix-systems",
        "repo": "default",
        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
        "type": "github"
      },
      "original": {
        "owner": "nix-systems",
        "repo": "default",
        "type": "github"
      }
    },
    "systems_3": {
      "locked": {
        "lastModified": 1681028828,
        "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
        "owner": "nix-systems",
        "repo": "default",
        "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
        "type": "github"
      },
      "original": {
        "owner": "nix-systems",
        "repo": "default",
        "type": "github"
      }
    },
    "ts-fold": {
      "flake": false,
      "locked": {
        "lastModified": 1681029086,
        "narHash": "sha256-z3eVkAPFI6JYZZ+2XM496zBxwnujTp4Y4KNNfqgUC/E=",
        "owner": "jcs-elpa",
        "repo": "ts-fold",
        "rev": "5fd2a5afe2112ac23b58ee1b12730fcf16068df3",
        "type": "github"
      },
      "original": {
        "owner": "jcs-elpa",
        "repo": "ts-fold",
        "type": "github"
      }
    },
    "utils": {
      "locked": {
        "lastModified": 1667395993,
        "narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=",
        "owner": "numtide",
        "repo": "flake-utils",
        "rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f",
        "type": "github"
      },
      "original": {
        "owner": "numtide",
        "repo": "flake-utils",
        "type": "github"
      }
    },
    "utils_2": {
      "locked": {
        "lastModified": 1667395993,
        "narHash": "sha256-nuEHfE/LcWyuSWnS8t12N1wc105Qtau+/OdUAjtQ0rA=",
        "owner": "numtide",
        "repo": "flake-utils",
        "rev": "5aed5285a952e0b949eb3ba02c12fa4fcfef535f",
        "type": "github"
      },
      "original": {
        "owner": "numtide",
        "repo": "flake-utils",
        "type": "github"
      }
    },
    "ws-butler": {
      "flake": false,
      "locked": {
        "lastModified": 1634511126,
        "narHash": "sha256-c0y0ZPtxxICPk+eaNbbQf6t+FRCliNY54CCz9QHQ8ZI=",
        "owner": "hlissner",
        "repo": "ws-butler",
        "rev": "572a10c11b6cb88293de48acbb59a059d36f9ba5",
        "type": "github"
      },
      "original": {
        "owner": "hlissner",
        "repo": "ws-butler",
        "type": "github"
      }
    }
  },
  "root": "root",
  "version": 7
}

Left pkgs.emacs inside the nixos configuration. Removed it, and it worked.