aboutsummaryrefslogtreecommitdiffstats
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix71
1 files changed, 1 insertions, 70 deletions
diff --git a/flake.nix b/flake.nix
index 62c2b67..ffc240b 100644
--- a/flake.nix
+++ b/flake.nix
@@ -189,75 +189,6 @@
} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = import systems;
- perSystem = {
- config,
- system,
- ...
- }: let
- pkgs = import nixpkgs {
- inherit system;
- overlays = [nixvim.overlays.default];
- };
- nixVimConfig =
- (import ./hm/nixvim/config.nix pkgs)
- // {
- colorschemes.gruvbox.enable = true;
- plugins.airline.settings.theme = "minimalist";
- };
- nvim = nixvim.legacyPackages."${system}".makeNixvim nixVimConfig;
- hooks = self.checks.${system}.pre-commit;
- in {
- devShells.default = pkgs.mkShell {
- inherit (hooks) shellHook;
- buildInputs = hooks.enabledPackages;
- packages = with pkgs; [
- nil
- statix
- alejandra
- sops
- ragenix.packages."${system}".default
- ];
- };
-
- formatter = pkgs.alejandra;
-
- packages = {
- inherit nvim;
- default = nvim;
- };
- checks = {
- nvim = nixvim.lib.${system}.check.mkTestDerivationFromNvim {
- inherit nvim;
- name = "My NixVim Configuration";
- };
- pre-commit = git-hooks.lib.${system}.run {
- src = ./.;
- hooks = {
- alejandra.enable = true;
- };
- };
- };
- };
- flake = {
- nixosConfigurations = import ./flake/nixosConfigurations {
- inherit
- self
- base16-tokyo-night-scheme
- nixpkgs
- nixpkgs-pinned
- home-manager
- prismlauncher
- lanzaboote
- nixvim
- impermanence
- wl-togglescreens
- stylix
- sops-nix
- agenix
- ragenix
- arkenfox-user-js
- ;
- };
- };
+ imports = [./flake];
};
}