we
This commit is contained in:
parent
a6dfc8b929
commit
88ad53fda4
3 changed files with 15 additions and 12 deletions
|
@ -721,6 +721,12 @@ Dired is a built-in file manager for Emacs that does some pretty amazing things!
|
||||||
(setq auto-save-file-name-transforms
|
(setq auto-save-file-name-transforms
|
||||||
`((".*" ,(no-littering-expand-var-file-name "auto-save/") t)))
|
`((".*" ,(no-littering-expand-var-file-name "auto-save/") t)))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
** Rich Precense
|
||||||
|
#+begin_src emacs-lisp
|
||||||
|
(use-package elcord
|
||||||
|
:init
|
||||||
|
(elcord-mode))
|
||||||
|
#+end_src
|
||||||
* Org Mode Configuration Setup
|
* Org Mode Configuration Setup
|
||||||
** Babel Languages
|
** Babel Languages
|
||||||
#+begin_src emacs-lisp
|
#+begin_src emacs-lisp
|
||||||
|
|
|
@ -567,6 +567,10 @@
|
||||||
(setq auto-save-file-name-transforms
|
(setq auto-save-file-name-transforms
|
||||||
`((".*" ,(no-littering-expand-var-file-name "auto-save/") t)))
|
`((".*" ,(no-littering-expand-var-file-name "auto-save/") t)))
|
||||||
|
|
||||||
|
(use-package elcord
|
||||||
|
:init
|
||||||
|
(elcord-mode))
|
||||||
|
|
||||||
(org-babel-do-load-languages
|
(org-babel-do-load-languages
|
||||||
'org-babel-load-languages
|
'org-babel-load-languages
|
||||||
'((emacs-lisp . t)
|
'((emacs-lisp . t)
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
root = "/mnt";
|
root = "/mnt";
|
||||||
# Allows writing to linux network section in Explorer
|
# Allows writing to linux network section in Explorer
|
||||||
options = "metadata,uid=1000,gid=100,umask=22,fmask=11";
|
options = "metadata,uid=1000,gid=100,umask=22,fmask=11";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
defaultUser = "sako";
|
defaultUser = "sako";
|
||||||
startMenuLaunchers = true;
|
startMenuLaunchers = true;
|
||||||
|
@ -37,7 +37,6 @@
|
||||||
|
|
||||||
# Enable integration with Docker Desktop (needs to be installed)
|
# Enable integration with Docker Desktop (needs to be installed)
|
||||||
# docker-desktop.enable = true;
|
# docker-desktop.enable = true;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
users.users.sako.isNormalUser = true;
|
users.users.sako.isNormalUser = true;
|
||||||
|
@ -61,12 +60,11 @@
|
||||||
xdg.configFile.git = {
|
xdg.configFile.git = {
|
||||||
source = ../../config/git;
|
source = ../../config/git;
|
||||||
};
|
};
|
||||||
services.gpg-agent = {
|
|
||||||
enable = true;
|
|
||||||
pinentryFlavor = "tty";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
programs.gnupg.agent = {
|
||||||
|
enable = true;
|
||||||
|
pinentryFlavor = "gtk2";
|
||||||
|
};
|
||||||
# bare minimum
|
# bare minimum
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
vim # backup
|
vim # backup
|
||||||
|
@ -77,11 +75,6 @@
|
||||||
htop # htop
|
htop # htop
|
||||||
tree # trees
|
tree # trees
|
||||||
];
|
];
|
||||||
# you phisiclally cannot live without this
|
|
||||||
# litearlly! ! ! ! ! !
|
|
||||||
programs.gnupg.agent = {
|
|
||||||
enable = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
environment.noXlibs = lib.mkForce false;
|
environment.noXlibs = lib.mkForce false;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue