All checks were successful
/ check-fmt (push) Successful in 3s
/ build-package (audiomenu) (push) Successful in 1s
/ build-package (docs) (push) Successful in 1s
/ build-package (docs-home-markdown) (push) Successful in 1s
/ build-package (docs-nixos-markdown) (push) Successful in 1s
/ build-package (docs-nvim-markdown) (push) Successful in 1s
/ build-package (jpassmenu) (push) Successful in 1s
/ build-package (nvim) (push) Successful in 1s
/ build-package (nvim-headless) (push) Successful in 1s
/ build-package (nvim-no-lsps) (push) Successful in 1s
/ build-package (nvim-no-ts) (push) Successful in 1s
/ build-package (nvim-small) (push) Successful in 1s
/ build-package (search) (push) Successful in 1s
/ check-nvim (nvim) (push) Successful in 6s
/ check-nvim (nvim-headless) (push) Successful in 3s
/ check-nvim (nvim-no-lsps) (push) Successful in 5s
/ check-nvim (nvim-no-ts) (push) Successful in 6s
/ check-nvim (nvim-small) (push) Successful in 5s
/ build-vm (push) Successful in 2s
/ build-hm (push) Successful in 14s
/ report-size (push) Successful in 4s
This adds a home-manager example configuration to ensure the home-manager standalone module works properly.
33 lines
1,013 B
Nix
33 lines
1,013 B
Nix
{ inputs, lib, ... }:
|
|
{
|
|
flake = {
|
|
# Example vm configuration
|
|
nixosConfigurations.vm = lib.nixosSystem {
|
|
modules = [
|
|
inputs.self.nixosModules.default
|
|
../example-vm # import vm configuration
|
|
{
|
|
nixpkgs = {
|
|
overlays = builtins.attrValues inputs.self.overlays;
|
|
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ "steam-unwrapped" ];
|
|
};
|
|
# pin nixpkgs to the one used by the system
|
|
nix.registry.nixpkgs.flake = inputs.nixpkgs;
|
|
}
|
|
];
|
|
};
|
|
homeConfigurations.example = inputs.home-manager.lib.homeManagerConfiguration {
|
|
pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux;
|
|
modules = [
|
|
inputs.self.homeModules.standalone
|
|
../example-hm/home.nix # import home-manager configuration
|
|
{
|
|
nixpkgs.overlays = [
|
|
inputs.self.overlays.unstable
|
|
inputs.lix-module.overlays.default
|
|
];
|
|
}
|
|
];
|
|
};
|
|
};
|
|
}
|