[fix] machines: remove all configurations
All checks were successful
/ check (push) Successful in 26s
/ build (audiomenu) (push) Successful in 2s
/ build (docs) (push) Successful in 2s
/ build (jpassmenu) (push) Successful in 2s
/ build (nixosConfigurations.vm.config.system.build.toplevel) (push) Successful in 2s
/ build (nvim) (push) Successful in 13s
/ update-lockfile (push) Has been skipped

Moved them to my main flake instead
This commit is contained in:
Jalil David Salamé Messina 2024-07-20 18:33:32 +02:00
parent 8c4f147f58
commit 9ecdc662bc
Signed by: jalil
GPG key ID: F016B9E770737A0B
9 changed files with 3 additions and 422 deletions

View file

@ -19,8 +19,6 @@
url = "github:nix-community/home-manager/release-24.05";
inputs.nixpkgs.follows = "nixpkgs";
};
nixos-hardware.url = "github:NixOS/nixos-hardware";
# FIXME: pin to 24.05 when avalialble
stylix = {
url = "github:danth/stylix/release-24.05";
inputs = {
@ -61,7 +59,6 @@
unstable,
stylix,
home-manager,
nixos-hardware,
nixvim,
lix-module,
...
@ -223,16 +220,11 @@
nix.registry.nixpkgs.flake = nixpkgs;
};
machines = [
"capricorn"
"gemini"
"libra"
"vm"
];
machines = [ "vm" ];
mkMachine = hostname: {
imports = [
nixosModule
(import (./machines + "/${hostname}") { inherit nixos-hardware; })
(import (./machines + "/${hostname}"))
];
home-manager.sharedModules = [ { jhome.hostName = hostname; } ];
};