678 current 2024-05-23 23:43:18 24.11.20240523.2ee89d5 6.9.1-zen1 *

This commit is contained in:
zackartz 2024-05-23 23:43:27 -04:00
parent 846c63df67
commit e83f4ded85
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
3 changed files with 128 additions and 158 deletions

View file

@ -94,7 +94,7 @@
inherit inputs;
src = ./.;
overlays = [inputs.neovim-nightly-overlay.overlay];
overlays = [inputs.neovim-nightly-overlay.overlays.default];
snowfall = {
namespace = "custom";
@ -121,61 +121,4 @@
agenix.nixosModules.default
];
};
# outputs = {
# self,
# nixpkgs,
# nixpkgs_stable,
# systems,
# ...
# } @ inputs: let
# eachSystem = f:
# nixpkgs.lib.genAttrs (import systems) (
# system:
# f nixpkgs.legacyPackages.${system}
# );
# in {
# nixosConfigurations.pluto = nixpkgs_stable.lib.nixosSystem {
# specialArgs = {inherit inputs;};
# modules = [
# ./hosts/pluto/configuration.nix
# inputs.home-manager_stable.nixosModules.default
# inputs.blog.nixosModule
# inputs.agenix.nixosModules.default
# ];
# };
#
# nixosConfigurations.earth = nixpkgs.lib.nixosSystem {
# specialArgs = {inherit inputs;};
# modules = [
# ./hosts/earth/configuration.nix
# inputs.lanzaboote.nixosModules.lanzaboote
# inputs.home-manager.nixosModules.default
# inputs.catppuccin.nixosModules.catppuccin
# inputs.agenix.nixosModules.default
# ];
# };
#
# nixosConfigurations.live = nixpkgs.lib.nixosSystem {
# system = "x86_64-linux";
# specialArgs = {inherit inputs;};
# modules = [
# "${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-graphical-plasma5.nix"
# "${nixpkgs}/nixos/modules/installer/cd-dvd/installation-cd-minimal.nix"
# # ./hosts/live/configuration.nix
# ];
# };
#
# devShells = eachSystem (pkgs: {
# default = pkgs.mkShell {
# buildInputs = [
# pkgs.nixd
# pkgs.alejandra
# pkgs.stylua
# pkgs.lua-language-server
# pkgs.luajitPackages.lua-lsp
# ];
# };
# });
# };
}