| 12 Sep 2022 |
ribosomerocker | oh don't worry, i completely understand | 20:55:53 |
ribosomerocker | yep, that's what happened to me before loll | 20:56:07 |
k0kada (he/him) | I see too many new folks getting into Nix and them stopping using it because they want to have all the shiny things at once | 20:56:18 |
k0kada (he/him) | Like you see folks using NixOS+home-manager+flakes all from the go | 20:56:51 |
ribosomerocker | https://github.com/nix-community/nix-doom-emacs/pull/266#discussion_r968899561
btw for this, what would the flake.nix be? | 20:57:26 |
k0kada (he/him) | So I think we just discourage newbies to using this project considering how problematic it can be | 20:57:38 |
ribosomerocker | yeah, i agree | 20:58:36 |
ribosomerocker | OK, I think after this push (i read #4 and i added a FAQ question for it), it should be fine | 21:12:38 |
ribosomerocker | I just applied the changes from your newest review and I un-drafted the PR | 21:24:44 |
k0kada (he/him) | https://github.com/nix-community/nix-doom-emacs/pull/266/files#diff-57cdcc6b6701a7ce3b3a8f8c0366e0e611e6fb1a1b8dd7cd29e3263b3e064c8bR6
Perfect 👍️ | 21:29:10 |
ribosomerocker | about this: https://github.com/nix-community/nix-doom-emacs/pull/266#discussion_r968946311
how do you suggest i make it? ignore any other file and only use flake.nix to demonstrate? | 21:30:34 |
k0kada (he/him) | A real nitpick, but I am almost sure the project is called nix-doom-emacs | 21:30:51 |
k0kada (he/him) | Not Nix-Doom-Emacs | 21:30:56 |
k0kada (he/him) | But I will leave that one to ckie (they/them) | 21:31:03 |
ribosomerocker | oh yeah, you're right 😅 | 21:31:17 |
mei 🌒& | yup, that's a part of my review | 21:31:19 |
mei 🌒& | should i go ahead with my wave? | 21:31:23 |
ribosomerocker | sure | 21:31:33 |
ribosomerocker | In reply to@mon:tchncs.de
about this: https://github.com/nix-community/nix-doom-emacs/pull/266#discussion_r968946311
how do you suggest i make it? ignore any other file and only use flake.nix to demonstrate?
well, i think i'll just make it flake.nix | 21:32:18 |
k0kada (he/him) | In reply to @ckie:ckie.dev yup, that's a part of my review Yeah, it mostly looks good for me | 21:32:29 |
k0kada (he/him) | Have just a few small comments that I am doing right now | 21:32:38 |
mei 🌒& | we should try pairing sometime, could be interesting | 21:35:27 |
ribosomerocker | i have the nixos+hm flake.nix as
{
inputs = {
home-manager.url = "github:nix-community/home-manager";
nix-doom-emacs.url = "github:nix-community/nix-doom-emacs";
};
outputs = {
self,
nixpkgs,
lib,
home-manager,
nix-doom-emacs,
...
}:
let
system = "x86_64-linux";
in {
nixosConfigurations.exampleHost = lib.nixosSystem {
inherit system;
modules = [
./default.nix
home-manager.nixosModules.home-manager
{
home-manager.users.exampleUser = { ... }: {
imports = [ nix-doom-emacs.hmModule ]
programs.doom-emacs = {
enable = true;
doomPrivateDir = true;
}
};
}
];
};
};
}
| 21:40:30 |
ribosomerocker | will this work? | 21:40:34 |
ribosomerocker | specifically the imports line | 21:40:42 |
ribosomerocker | i really don't want to use mkMerge :P | 21:40:49 |
k0kada (he/him) | It should | 21:41:00 |
ribosomerocker | alright, got it | 21:41:12 |
k0kada (he/him) | But to double check it | 21:41:20 |
k0kada (he/him) | Let's build | 21:41:23 |