Compare commits

..

No commits in common. "715f3d6f936b47c927fc3bc00b03b22981d0882b" and "2d065e249323d0905a124157118a9c290e4f1e96" have entirely different histories.

3 changed files with 40 additions and 62 deletions

View file

@ -28,22 +28,19 @@
};
};
outputs =
{
outputs = {
self,
clan-core,
nixpkgs,
...
}@inputs:
let
} @ inputs: let
# Usage see: https://docs.clan.lol
clan = clan-core.lib.clan {
inherit self;
imports = [./clan.nix];
specialArgs = {inherit inputs;};
};
in
{
in {
inherit (clan.config) nixosConfigurations nixosModules clanInternals;
# Add the Clan cli tool to the dev shell.
# Use "nix develop" to enter the dev shell.

View file

@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{pkgs, ...}: {
# Must-have packages
environment.systemPackages = with pkgs; [
vim

View file

@ -1,5 +1,4 @@
{ pkgs, ... }:
{
{pkgs, ...}: {
programs.helix = {
enable = true;
defaultEditor = true;
@ -11,11 +10,7 @@
config = {};
};
nil = {
command = "${pkgs.nil}/bin/nil";
};
vscode-json-language-server.command = "${pkgs.nodePackages.vscode-json-languageserver}/bin/vscode-json-languageserver";
nil = {command = "${pkgs.nil}/bin/nil";};
};
language = [
@ -32,20 +27,7 @@
auto-format = true;
formatter = {
command = "${pkgs.black}/bin/black";
args = [
"--quiet"
"-"
];
};
}
{
name = "json";
formatter = {
command = "${pkgs.nodePackages.prettier}/bin/prettier";
args = [
"--parser"
"json"
];
args = ["--quiet" "-"];
};
}
];