feat: add mantle

This commit is contained in:
2025-02-23 04:53:32 +00:00
parent 63973b2b57
commit e822d714f2
3 changed files with 28 additions and 4 deletions

21
nix/flake.lock generated
View File

@@ -36,6 +36,26 @@
"type": "github"
}
},
"mantle": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1740286249,
"narHash": "sha256-BvNcVzVXf8N7mCxV6PpO7cR5hx4k32BfuYiSmE1+DzA=",
"owner": "rocketcamel",
"repo": "mantle-nix",
"rev": "a5bdab16b5d3024e7be1f4f2bc9011b2999f3073",
"type": "github"
},
"original": {
"owner": "rocketcamel",
"repo": "mantle-nix",
"type": "github"
}
},
"nixos-wsl": {
"inputs": {
"flake-compat": "flake-compat",
@@ -111,6 +131,7 @@
"root": {
"inputs": {
"home-manager": "home-manager",
"mantle": "mantle",
"nixos-wsl": "nixos-wsl",
"nixpkgs": "nixpkgs_2",
"pesde": "pesde"

View File

@@ -8,6 +8,8 @@
home-manager.inputs.nixpkgs.follows = "nixpkgs";
pesde.url = "github:rocketcamel/pesde-nix";
pesde.inputs.nixpkgs.follows = "nixpkgs";
mantle.url = "github:rocketcamel/mantle-nix";
mantle.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
@@ -64,6 +66,7 @@
];
environment.systemPackages = [
inputs.pesde.packages.${host.architecture}.default
inputs.mantle.packages.${host.architecture}.default
];
nixpkgs.config.allowUnfree = true;
}