x220 and more: Make adjustments to better work with the host
This commit is contained in:
parent
af5db3743b
commit
f342ff95b7
7 changed files with 22 additions and 3 deletions
|
@ -68,7 +68,7 @@ in {
|
|||
unite.extensionUuid
|
||||
];
|
||||
favorite-apps = [
|
||||
"firefox-esr.desktop"
|
||||
"org.mozilla.firefox-esr.desktop"
|
||||
"emacs.desktop"
|
||||
"com.mitchellh.ghostty.desktop"
|
||||
"signal-desktop.desktop"
|
||||
|
|
13
modules/home/caem/development/emacs/emacs.d/extras/elcord.el
Normal file
13
modules/home/caem/development/emacs/emacs.d/extras/elcord.el
Normal file
|
@ -0,0 +1,13 @@
|
|||
(defvar elcord-dir "~/.local/share/emacs/my/elcord")
|
||||
(if (file-directory-p elcord-dir)
|
||||
(progn
|
||||
(add-to-list 'load-path elcord-dir)
|
||||
(require 'elcord)
|
||||
(setq elcord-icon-base "https://raw.githubusercontent.com/c4em/elcord/master/icons/"
|
||||
elcord-refresh-rate 10
|
||||
elcord-use-major-mode-as-main-icon t))
|
||||
(use-package elcord
|
||||
:ensure t
|
||||
:custom
|
||||
(elcord-use-major-mode-as-main-icon t)
|
||||
(elcord-refresh-rate 10)))
|
|
@ -0,0 +1 @@
|
|||
(rei/load "elcord.el")
|
|
@ -5,3 +5,4 @@
|
|||
(require 'rei)
|
||||
(rei/load "core")
|
||||
(rei/load "modes")
|
||||
(rei/load "extras")
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
signal-desktop
|
||||
element-desktop
|
||||
vesktop
|
||||
unstable.flare-signal
|
||||
];
|
||||
|
||||
environment.persistence."/nix/persist" = {
|
||||
|
@ -16,6 +17,7 @@
|
|||
".config/tutanota-desktop"
|
||||
".config/tuta_integration"
|
||||
".config/Element"
|
||||
".local/share/flare"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
{
|
||||
fonts = {
|
||||
packages = with pkgs; [
|
||||
nerdfonts
|
||||
unstable.nerd-fonts.go-mono
|
||||
ipafont
|
||||
noto-fonts-emoji
|
||||
cantarell-fonts
|
||||
|
|
|
@ -6,4 +6,6 @@
|
|||
".local/share/emacs"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
||||
virtualisation.containers.enable = true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue