Compare commits
No commits in common. "715f3d6f936b47c927fc3bc00b03b22981d0882b" and "2d065e249323d0905a124157118a9c290e4f1e96" have entirely different histories.
715f3d6f93
...
2d065e2493
3 changed files with 40 additions and 62 deletions
65
flake.nix
65
flake.nix
|
|
@ -28,39 +28,36 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs =
|
outputs = {
|
||||||
{
|
self,
|
||||||
self,
|
clan-core,
|
||||||
clan-core,
|
nixpkgs,
|
||||||
nixpkgs,
|
...
|
||||||
...
|
} @ inputs: let
|
||||||
}@inputs:
|
# Usage see: https://docs.clan.lol
|
||||||
let
|
clan = clan-core.lib.clan {
|
||||||
# Usage see: https://docs.clan.lol
|
inherit self;
|
||||||
clan = clan-core.lib.clan {
|
imports = [./clan.nix];
|
||||||
inherit self;
|
specialArgs = {inherit inputs;};
|
||||||
imports = [ ./clan.nix ];
|
|
||||||
specialArgs = { inherit inputs; };
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
|
||||||
inherit (clan.config) nixosConfigurations nixosModules clanInternals;
|
|
||||||
# Add the Clan cli tool to the dev shell.
|
|
||||||
# Use "nix develop" to enter the dev shell.
|
|
||||||
devShells =
|
|
||||||
nixpkgs.lib.genAttrs
|
|
||||||
[
|
|
||||||
"x86_64-linux"
|
|
||||||
"aarch64-linux"
|
|
||||||
"aarch64-darwin"
|
|
||||||
"x86_64-darwin"
|
|
||||||
]
|
|
||||||
(system: {
|
|
||||||
default = clan-core.inputs.nixpkgs.legacyPackages.${system}.mkShell {
|
|
||||||
packages = [ clan-core.packages.${system}.clan-cli ];
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
clan = clan.config;
|
|
||||||
};
|
};
|
||||||
|
in {
|
||||||
|
inherit (clan.config) nixosConfigurations nixosModules clanInternals;
|
||||||
|
# Add the Clan cli tool to the dev shell.
|
||||||
|
# Use "nix develop" to enter the dev shell.
|
||||||
|
devShells =
|
||||||
|
nixpkgs.lib.genAttrs
|
||||||
|
[
|
||||||
|
"x86_64-linux"
|
||||||
|
"aarch64-linux"
|
||||||
|
"aarch64-darwin"
|
||||||
|
"x86_64-darwin"
|
||||||
|
]
|
||||||
|
(system: {
|
||||||
|
default = clan-core.inputs.nixpkgs.legacyPackages.${system}.mkShell {
|
||||||
|
packages = [clan-core.packages.${system}.clan-cli];
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
|
clan = clan.config;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{pkgs, ...}: {
|
||||||
{
|
|
||||||
# Must-have packages
|
# Must-have packages
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
vim
|
vim
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
{ pkgs, ... }:
|
{pkgs, ...}: {
|
||||||
{
|
|
||||||
programs.helix = {
|
programs.helix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultEditor = true;
|
defaultEditor = true;
|
||||||
|
|
@ -7,49 +6,32 @@
|
||||||
language-server = {
|
language-server = {
|
||||||
pyright = {
|
pyright = {
|
||||||
command = "${pkgs.pyright}/bin/pyright-langserver";
|
command = "${pkgs.pyright}/bin/pyright-langserver";
|
||||||
args = [ "--stdio" ];
|
args = ["--stdio"];
|
||||||
config = { };
|
config = {};
|
||||||
};
|
};
|
||||||
|
|
||||||
nil = {
|
nil = {command = "${pkgs.nil}/bin/nil";};
|
||||||
command = "${pkgs.nil}/bin/nil";
|
|
||||||
};
|
|
||||||
|
|
||||||
vscode-json-language-server.command = "${pkgs.nodePackages.vscode-json-languageserver}/bin/vscode-json-languageserver";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
language = [
|
language = [
|
||||||
{
|
{
|
||||||
name = "nix";
|
name = "nix";
|
||||||
language-servers = [ "nil" ];
|
language-servers = ["nil"];
|
||||||
auto-format = true;
|
auto-format = true;
|
||||||
formatter.command = "${pkgs.nixfmt-rfc-style}/bin/nixfmt";
|
formatter.command = "${pkgs.nixfmt-rfc-style}/bin/nixfmt";
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
name = "python";
|
name = "python";
|
||||||
language-servers = [ "pyright" ];
|
language-servers = ["pyright"];
|
||||||
auto-format = true;
|
auto-format = true;
|
||||||
formatter = {
|
formatter = {
|
||||||
command = "${pkgs.black}/bin/black";
|
command = "${pkgs.black}/bin/black";
|
||||||
args = [
|
args = ["--quiet" "-"];
|
||||||
"--quiet"
|
|
||||||
"-"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
name = "json";
|
|
||||||
formatter = {
|
|
||||||
command = "${pkgs.nodePackages.prettier}/bin/prettier";
|
|
||||||
args = [
|
|
||||||
"--parser"
|
|
||||||
"json"
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
settings = { };
|
settings = {};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue