feat: fix/symlink doom config, symlink qtile directory
This commit is contained in:
parent
45566a8bc8
commit
27161b9fe4
4 changed files with 11 additions and 8 deletions
|
@ -1,10 +1,7 @@
|
|||
{ pkgs, lib, ... }: {
|
||||
services.xserver = {
|
||||
enable = true;
|
||||
displayManager = {
|
||||
lightdm.enable = true;
|
||||
importedVariables = [ "DOOMDIR" ];
|
||||
};
|
||||
displayManager.lightdm.enable = true;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
|
|
|
@ -148,3 +148,6 @@
|
|||
(use-package! lsp-python-ms
|
||||
:init
|
||||
(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")
|
||||
|
|
|
@ -22,8 +22,13 @@
|
|||
home = {
|
||||
file = {
|
||||
qtile_config = {
|
||||
source = ./config/qtile.py;
|
||||
target = "${config.xdg.configHome}/qtile/config.py";
|
||||
source = ./config/qtile;
|
||||
target = "${config.xdg.configHome}/qtile";
|
||||
};
|
||||
|
||||
doom_config = {
|
||||
source = ./config/doom;
|
||||
target = "${config.xdg.configHome}/doom";
|
||||
};
|
||||
};
|
||||
|
||||
|
@ -56,8 +61,6 @@
|
|||
];
|
||||
|
||||
shellAliases.ssh = "kitty +kitten ssh";
|
||||
|
||||
variables.DOOMDOR = "/etc/nixos/users/infinidoge/config/doom/";
|
||||
};
|
||||
|
||||
programs = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue