feat: fix/symlink doom config, symlink qtile directory

This commit is contained in:
Infinidoge 2021-09-28 00:25:42 -04:00
parent 45566a8bc8
commit 27161b9fe4
4 changed files with 11 additions and 8 deletions

View file

@ -1,10 +1,7 @@
{ pkgs, lib, ... }: { { pkgs, lib, ... }: {
services.xserver = { services.xserver = {
enable = true; enable = true;
displayManager = { displayManager.lightdm.enable = true;
lightdm.enable = true;
importedVariables = [ "DOOMDIR" ];
};
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View file

@ -148,3 +148,6 @@
(use-package! lsp-python-ms (use-package! lsp-python-ms
:init :init
(setq lsp-python-ms-executable (executable-find "python-language-server"))) (setq lsp-python-ms-executable (executable-find "python-language-server")))
;; Disable excessive warnings in configuration directory
(add-to-list '+emacs-lisp-disable-flycheck-in-dirs "/etc/nixos")

View file

@ -22,8 +22,13 @@
home = { home = {
file = { file = {
qtile_config = { qtile_config = {
source = ./config/qtile.py; source = ./config/qtile;
target = "${config.xdg.configHome}/qtile/config.py"; target = "${config.xdg.configHome}/qtile";
};
doom_config = {
source = ./config/doom;
target = "${config.xdg.configHome}/doom";
}; };
}; };
@ -56,8 +61,6 @@
]; ];
shellAliases.ssh = "kitty +kitten ssh"; shellAliases.ssh = "kitty +kitten ssh";
variables.DOOMDOR = "/etc/nixos/users/infinidoge/config/doom/";
}; };
programs = { programs = {