mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
clean up devshell
This commit is contained in:
parent
a35753cfd9
commit
f65255c7c1
15
flake.nix
15
flake.nix
@ -12,8 +12,6 @@
|
||||
|
||||
outputs = { self, nixpkgs, home-manager }:
|
||||
let
|
||||
# Gather packages
|
||||
pkgs = import nixpkgs { system = "x86_64-linux"; };
|
||||
identity = {
|
||||
user = "noah";
|
||||
name = "Noah Masur";
|
||||
@ -23,7 +21,7 @@
|
||||
gui = {
|
||||
enable = false;
|
||||
font = {
|
||||
package = pkgs.victor-mono;
|
||||
package = "victor-mono";
|
||||
name = "Victor Mono";
|
||||
};
|
||||
gtkTheme = "Adwaita-dark";
|
||||
@ -56,10 +54,13 @@
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
devShells.x86_64-linux.default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [ stylua nixfmt shfmt shellcheck ];
|
||||
};
|
||||
devShells.x86_64-linux =
|
||||
let pkgs = import nixpkgs { system = "x86_64-linux"; };
|
||||
in {
|
||||
default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [ stylua nixfmt shfmt shellcheck ];
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user