Compare commits

..

No commits in common. "3988202916c65a43fd9b4ff5cc5437800c4c5dc1" and "771b7b1a42960a37a3cad91a963be3d242839723" have entirely different histories.

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

View File

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

View File

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