Compare commits

..

3 Commits

Author SHA1 Message Date
3988202916 hyprland will have to be another day 2025-10-02 11:06:20 -06:00
971d7d1d93 little annoyance 2025-10-02 11:02:47 -06:00
e63a0590b4 restoring config.org 2025-10-02 11:02:17 -06:00
3 changed files with 12 additions and 12 deletions

View File

@ -451,17 +451,17 @@ later.
Configurations to add linting support to specific languages by integrating linters with flycheck.
#+begin_src emacs-lisp :tangle ./config.el
;; (use-package! flycheck
;; :config
;; (flycheck-define-checker deadnix
;; "A syntax checker for Nix using deadnix."
;; :command ("deadnix" "--fail" source)
;; :error-patterns
;; ((warning line-start (file-name) ":" line ":" column
;; ": " (message) line-end))
;; :modes (nix-mode))
(use-package! flycheck
:config
(flycheck-define-checker nix-statix
"A syntax checker for Nix using Statix."
:command ("statix" "check" source)
:error-patterns
((warning line-start (file-name) ":" line ":" column
": " (message) line-end))
:modes (nix-mode))
;; (add-to-list 'flycheck-checkers 'deadnix))
(add-to-list 'flycheck-checkers 'nix-statix))
#+end_src
* GPT
Integrate most AI agents with emacs on a way that through api keys it can do

View File

@ -4,6 +4,7 @@
...
}:
{
qt.enable = true;
services = {
gvfs.enable = true;
libinput.enable = true;
@ -32,7 +33,6 @@
totem
;
};
qt.enable = true;
users.users.jawz.packages = builtins.attrValues {
inherit (pkgs.gnomeExtensions)
tactile # window manager

View File

@ -21,7 +21,7 @@ in
./hardware-configuration.nix
../../config/base.nix
../../config/stylix.nix
../../environments/hyprland.nix
../../environments/gnome.nix
];
my = import ./toggles.nix // {
nix.cores = 8;