aboutsummaryrefslogtreecommitdiff
path: root/nix/flake
diff options
context:
space:
mode:
Diffstat (limited to 'nix/flake')
-rw-r--r--nix/flake/devshell.nix2
-rw-r--r--nix/flake/hosts.nix2
-rw-r--r--nix/flake/packages.nix2
3 files changed, 4 insertions, 2 deletions
diff --git a/nix/flake/devshell.nix b/nix/flake/devshell.nix
index ff56ca6..6a3d678 100644
--- a/nix/flake/devshell.nix
+++ b/nix/flake/devshell.nix
@@ -29,7 +29,7 @@
gofmt.enable = true;
gofumpt.enable = true;
nixpkgs-fmt.enable = true;
- shellcheck.enable = true;
+ # shellcheck.enable = true;
shfmt.enable = true;
taplo.enable = true;
ruff.enable = true;
diff --git a/nix/flake/hosts.nix b/nix/flake/hosts.nix
index c02fe6c..836a26b 100644
--- a/nix/flake/hosts.nix
+++ b/nix/flake/hosts.nix
@@ -34,6 +34,7 @@ let
mkNixosConfig = system: path: nixpkgs.lib.nixosSystem {
inherit system;
modules = [
+ "${self}/nix/hosts/nixos"
path
];
specialArgs = { inherit inputs self; };
@@ -49,6 +50,7 @@ in
nixosConfigurations = {
vm = mkNixosConfig "aarch64-linux" "${self}/nix/hosts/vm";
+ wildcat = mkNixosConfig "x86_64-linux" "${self}/nix/hosts/wildcat";
};
}
];
diff --git a/nix/flake/packages.nix b/nix/flake/packages.nix
index ae4caba..16c5ec4 100644
--- a/nix/flake/packages.nix
+++ b/nix/flake/packages.nix
@@ -3,7 +3,7 @@
inputs.flake-parts.flakeModules.easyOverlay
];
- perSystem = { config, pkgs, ... }: {
+ perSystem = { pkgs, ... }: {
packages = {
git-blame-stats = pkgs.callPackage "${self}/packages/git-blame-stats" { };
git-broom = pkgs.callPackage "${self}/packages/git-broom" { };