home-manager: inital commit
This commit is contained in:
parent
faaaa3d324
commit
2cbef00925
31 changed files with 1558 additions and 0 deletions
20
home/dev/emacs.nix
Normal file
20
home/dev/emacs.nix
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
inputs.nix-doom-emacs-unstraightened.homeModule
|
||||
];
|
||||
|
||||
fonts.fontconfig.enable = true; # allows adding fonts from home manager config
|
||||
home.packages = with pkgs; [
|
||||
nerd-fonts.commit-mono
|
||||
nerd-fonts.sauce-code-pro
|
||||
];
|
||||
|
||||
programs.doom-emacs = {
|
||||
enable = true;
|
||||
doomDir = ./doom.d;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue