mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
remove tooling and add TODO.md
This commit is contained in:
parent
4a57992e8b
commit
eb5b82bf6b
1
TODO.md
Normal file
1
TODO.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
- Add Nix formatting and linting that works with neovim.
|
@ -40,7 +40,6 @@
|
|||||||
devel = {
|
devel = {
|
||||||
engineering.enable = true;
|
engineering.enable = true;
|
||||||
notes.enable = true;
|
notes.enable = true;
|
||||||
tooling.enable = true;
|
|
||||||
};
|
};
|
||||||
gaming = {
|
gaming = {
|
||||||
emulation.enable = true;
|
emulation.enable = true;
|
||||||
|
@ -34,9 +34,6 @@
|
|||||||
enable = true;
|
enable = true;
|
||||||
gnome.enable = true;
|
gnome.enable = true;
|
||||||
};
|
};
|
||||||
devel = {
|
|
||||||
tooling.enable = true;
|
|
||||||
};
|
|
||||||
programs = {
|
programs = {
|
||||||
chezmoi.apply = true;
|
chezmoi.apply = true;
|
||||||
kitty.enable = true;
|
kitty.enable = true;
|
||||||
|
@ -27,7 +27,6 @@
|
|||||||
devel = {
|
devel = {
|
||||||
engineering.enable = true;
|
engineering.enable = true;
|
||||||
notes.enable = true;
|
notes.enable = true;
|
||||||
tooling.enable = true;
|
|
||||||
};
|
};
|
||||||
programs = {
|
programs = {
|
||||||
kitty.enable = true;
|
kitty.enable = true;
|
||||||
|
@ -96,9 +96,6 @@
|
|||||||
|
|
||||||
# Modules
|
# Modules
|
||||||
modules = {
|
modules = {
|
||||||
devel = {
|
|
||||||
tooling.enable = true;
|
|
||||||
};
|
|
||||||
programs = {
|
programs = {
|
||||||
chezmoi.apply = true;
|
chezmoi.apply = true;
|
||||||
};
|
};
|
||||||
|
@ -52,9 +52,6 @@ in
|
|||||||
|
|
||||||
# Modules
|
# Modules
|
||||||
modules = {
|
modules = {
|
||||||
devel = {
|
|
||||||
tooling.enable = true;
|
|
||||||
};
|
|
||||||
programs = {
|
programs = {
|
||||||
chezmoi.apply = true;
|
chezmoi.apply = true;
|
||||||
git.keys = false;
|
git.keys = false;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ ... }:
|
{ ... }:
|
||||||
{
|
{
|
||||||
imports = [ ./notes.nix ./tooling.nix ./engineering.nix ];
|
imports = [ ./notes.nix ./engineering.nix ];
|
||||||
}
|
}
|
||||||
|
@ -1,21 +0,0 @@
|
|||||||
# coding stuff for all the languages
|
|
||||||
|
|
||||||
{ config, lib, pkgs, user, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
cfg = config.modules.devel.tooling;
|
|
||||||
in {
|
|
||||||
options.modules.devel.tooling.enable = lib.mkEnableOption "tooling";
|
|
||||||
config = lib.mkIf cfg.enable {
|
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
|
||||||
cmake # Cross-platform build system generator.
|
|
||||||
gcc # GNU Compiler Collection, a compiler system for programming languages.
|
|
||||||
coreutils # Collection of basic file, shell, and text manipulation utilities.
|
|
||||||
gnumake # GNU Make, a build automation tool.
|
|
||||||
go # Programming language developed by Google, known for its simplicity and efficiency.
|
|
||||||
nixpkgs-lint
|
|
||||||
nixpkgs-fmt
|
|
||||||
];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
x
Reference in New Issue
Block a user