Compare commits

..

1 Commits

Author SHA1 Message Date
0230bc3613
Enable audio and add a basic home configuration 2020-05-09 01:59:11 +02:00

View File

@ -2,14 +2,26 @@
# Doom emacs overlay
let
doom-emacs = pkgs.callPackage (builtins.fetchTarball {
url = https://github.com/vlaci/nix-doom-emacs/archive/master.tar.gz;
}) {
doomPrivateDir = ./doom.d;
};
home-manager = builtins.fetchGit {
url = "https://github.com/rycee/home-manager.git";
rev = "";
};
in
{
imports = [
(import "${home-manager}/nixos")
];
# User packages
home.packages = [
# Text editors
doom-emacs