removed lingering nixpkgs-fmt

This commit is contained in:
cnst
2024-08-29 09:04:01 +02:00
parent 03599a2b35
commit 6befe2e0fe
5 changed files with 104 additions and 100 deletions

View File

@@ -52,11 +52,13 @@ in {
yamlls.enable = true; yamlls.enable = true;
lua-ls = { lua-ls = {
enable = true; enable = true;
settings.telemetry.enable = false; settings = {
settings.diagnostics = { telemetry.enable = false;
diagnostics = {
globals = ["vim"]; globals = ["vim"];
}; };
}; };
};
tsserver = { tsserver = {
enable = false; # TS/JS enable = false; # TS/JS
}; };

View File

@@ -32,7 +32,7 @@ in {
alejandra.enable = true; alejandra.enable = true;
stylua.enable = true; stylua.enable = true;
shfmt.enable = true; shfmt.enable = true;
nixpkgs_fmt.enable = true; nixpkgs_fmt.enable = false;
google_java_format.enable = false; google_java_format.enable = false;
prettier = { prettier = {
enable = true; enable = true;

View File

@@ -1,7 +1,8 @@
{ config {
, lib config,
, modulesPath lib,
, ... modulesPath,
...
}: { }: {
imports = [ imports = [
(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")

View File

@@ -1,11 +1,11 @@
# Yanked from fufexan! # Yanked from fufexan!
{ { inputs
inputs, , homeImports
homeImports, , self
self, , ...
...
}: { }: {
flake.nixosConfigurations = let flake.nixosConfigurations =
let
# custom paths # custom paths
userConfig = "${self}/home"; userConfig = "${self}/home";
systemConfig = "${self}/system"; systemConfig = "${self}/system";
@@ -27,7 +27,8 @@
# get these into the module system # get these into the module system
specialArgs = { inherit inputs self userConfig systemConfig hostConfig cnstConfig toothpickConfig adamConfig userModules systemModules; }; specialArgs = { inherit inputs self userConfig systemConfig hostConfig cnstConfig toothpickConfig adamConfig userModules systemModules; };
in { in
{
cnix = nixosSystem { cnix = nixosSystem {
inherit specialArgs; inherit specialArgs;
modules = modules =

View File

@@ -24,7 +24,7 @@
# Other utilities and tools # Other utilities and tools
openssl # Required for some crates that involve networking or encryption openssl # Required for some crates that involve networking or encryption
# alejandra alejandra
# nixd # nixd
# pyright # pyright
# yaml-language-server # yaml-language-server