clean up devshell

This commit is contained in:
Noah Masur 2022-05-01 11:16:48 -04:00
parent a35753cfd9
commit f65255c7c1

View File

@ -12,8 +12,6 @@
outputs = { self, nixpkgs, home-manager }: outputs = { self, nixpkgs, home-manager }:
let let
# Gather packages
pkgs = import nixpkgs { system = "x86_64-linux"; };
identity = { identity = {
user = "noah"; user = "noah";
name = "Noah Masur"; name = "Noah Masur";
@ -23,7 +21,7 @@
gui = { gui = {
enable = false; enable = false;
font = { font = {
package = pkgs.victor-mono; package = "victor-mono";
name = "Victor Mono"; name = "Victor Mono";
}; };
gtkTheme = "Adwaita-dark"; gtkTheme = "Adwaita-dark";
@ -56,10 +54,13 @@
]; ];
}; };
}; };
devShells.x86_64-linux =
devShells.x86_64-linux.default = pkgs.mkShell { let pkgs = import nixpkgs { system = "x86_64-linux"; };
in {
default = pkgs.mkShell {
buildInputs = with pkgs; [ stylua nixfmt shfmt shellcheck ]; buildInputs = with pkgs; [ stylua nixfmt shfmt shellcheck ];
}; };
};
}; };
} }