Compare commits
3 Commits
771b7b1a42
...
3988202916
| Author | SHA1 | Date | |
|---|---|---|---|
| 3988202916 | |||
| 971d7d1d93 | |||
| e63a0590b4 |
@ -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 deadnix
|
(flycheck-define-checker nix-statix
|
||||||
;; "A syntax checker for Nix using deadnix."
|
"A syntax checker for Nix using Statix."
|
||||||
;; :command ("deadnix" "--fail" source)
|
:command ("statix" "check" 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 'deadnix))
|
(add-to-list 'flycheck-checkers 'nix-statix))
|
||||||
#+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
|
||||||
|
|||||||
@ -4,6 +4,7 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
qt.enable = true;
|
||||||
services = {
|
services = {
|
||||||
gvfs.enable = true;
|
gvfs.enable = true;
|
||||||
libinput.enable = true;
|
libinput.enable = true;
|
||||||
@ -32,7 +33,6 @@
|
|||||||
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
|
||||||
|
|||||||
@ -21,7 +21,7 @@ in
|
|||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
../../config/base.nix
|
../../config/base.nix
|
||||||
../../config/stylix.nix
|
../../config/stylix.nix
|
||||||
../../environments/hyprland.nix
|
../../environments/gnome.nix
|
||||||
];
|
];
|
||||||
my = import ./toggles.nix // {
|
my = import ./toggles.nix // {
|
||||||
nix.cores = 8;
|
nix.cores = 8;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user