mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-23 03:25:39 +00:00
clean up devshell
This commit is contained in:
parent
a35753cfd9
commit
f65255c7c1
11
flake.nix
11
flake.nix
@ -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 ];
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user