[vega] Downgrade to 24.11. Switch to mkNixos.

This commit is contained in:
2025-04-21 11:56:55 -07:00
parent 0dbcb541b3
commit 089541916a
5 changed files with 27 additions and 35 deletions

View File

@@ -1,27 +1,18 @@
{ nixpkgs, inputs, ... }:
nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
modules = [
{ ... }:
{
imports = [
./configuration.nix
./hardware-configuration.nix
inputs.home-manager.nixosModules.home-manager
{
nixpkgs.config.allowUnfree = true;
home-manager.users.drew =
{ ... }:
{
imports = [
./drew.nix
];
};
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.extraSpecialArgs = {
inherit inputs;
};
}
../../authorized-keys.nix
];
specialArgs = {
inherit inputs;
};
nixpkgs.config.allowUnfree = true;
home-manager.users.drew =
{ ... }:
{
imports = [
./drew.nix
];
};
}