Added emacs
This commit is contained in:
parent
348507b18d
commit
f823f887f5
5
home-modules/emacs.nix
Normal file
5
home-modules/emacs.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
programs.emacs.enable = true;
|
||||||
|
}
|
5
home.nix
5
home.nix
|
@ -1,5 +1,10 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
imports = [
|
||||||
|
./home-modules/emacs.nix
|
||||||
|
];
|
||||||
|
|
||||||
nixpkgs.config.allowUnfree = true;
|
nixpkgs.config.allowUnfree = true;
|
||||||
home.username = "svante";
|
home.username = "svante";
|
||||||
home.homeDirectory = "/home/svante";
|
home.homeDirectory = "/home/svante";
|
||||||
|
|
Loading…
Reference in a new issue