Revert "feat: add minecrraft :3 (don't ask why pls qq)"

This reverts commit 19b9c7ff78.

it did not work qwq
This commit is contained in:
EinEtwas 2024-10-26 13:38:42 +02:00
parent 19b9c7ff78
commit cc2795cb2e
Signed by: etwas
SSH key fingerprint: SHA256:bHhIeAdn/2k9jmOs6+u6ox98VYmoHUN3HfnpV2w8Ws0
5 changed files with 3 additions and 70 deletions

View file

@ -183,41 +183,6 @@
"url": "https://git.lix.systems/lix-project/nixos-module/archive/2.91.1-1.tar.gz"
}
},
"mcversions": {
"flake": false,
"locked": {
"lastModified": 1729738014,
"narHash": "sha256-pwtIkvOmGBj396oBlEOVce5Yie52ERR8v3FI3BNr/D4=",
"owner": "yushijinhun",
"repo": "minecraft-version-json-history",
"rev": "0aae0df5907d2274865e7dcc4204b51a7a0f59d0",
"type": "github"
},
"original": {
"owner": "yushijinhun",
"repo": "minecraft-version-json-history",
"type": "github"
}
},
"minecraft": {
"inputs": {
"mcversions": "mcversions",
"nixpkgs": "nixpkgs_2"
},
"locked": {
"lastModified": 1727495560,
"narHash": "sha256-nkQDG7lvk6HZY2c2MzkA0PrWnlGvsMHEFWhDgFj7CTs=",
"owner": "sharpstormgames",
"repo": "minecraft-nix",
"rev": "facb4964916caac56ebfdd10ddc08cc4a1628a2a",
"type": "github"
},
"original": {
"owner": "sharpstormgames",
"repo": "minecraft-nix",
"type": "github"
}
},
"nix-index-database": {
"inputs": {
"nixpkgs": [
@ -286,32 +251,15 @@
"type": "github"
}
},
"nixpkgs_3": {
"locked": {
"lastModified": 1729665710,
"narHash": "sha256-AlcmCXJZPIlO5dmFzV3V2XF6x/OpNWUV8Y/FMPGd8Z4=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "2768c7d042a37de65bb1b5b3268fc987e534c49d",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"agenix": "agenix",
"catppuccin": "catppuccin",
"home-manager": "home-manager_2",
"lix-module": "lix-module",
"minecraft": "minecraft",
"nix-index-database": "nix-index-database",
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_3",
"nixpkgs": "nixpkgs_2",
"spicetify-nix": "spicetify-nix"
}
},

View file

@ -30,8 +30,6 @@
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.1-1.tar.gz";
inputs.nixpkgs.follows = "nixpkgs";
};
minecraft.url = "github:sharpstormgames/minecraft-nix";
};
outputs = { self, nixpkgs, nixos-hardware, agenix, spicetify-nix, nix-index-database, lix-module, ... } @ inputs: {

View file

@ -20,7 +20,7 @@
/* The home.stateVersion option does not have a default and must be set */
home.stateVersion = "24.05";
/* Here goes the rest of your home-manager config, e.g. home.packages = [ pkgs.foo ]; */
# inherit ./hyprland.nix;
home.username = "rhea";
home.homeDirectory = "/home/rhea";
programs.home-manager.enable = true;
@ -35,7 +35,6 @@
inputs.spicetify-nix.homeManagerModules.default
inputs.nix-index-database.hmModules.nix-index
inputs.agenix.homeManagerModules.age
inputs.minecraft.homeManagerModule
./hyprland.nix
./git.nix
./waybar
@ -53,7 +52,6 @@
./ssh.nix
./blueman.nix
./direnv.nix
./minecraft.nix
];
home.pointerCursor = {

View file

@ -1,9 +0,0 @@
{
programs.minecraft = {
instances = {
"vanilla20" = {
minecraft.version = "1.20";
};
};
};
}

View file

@ -1,4 +1,4 @@
{ pkgs, agenix, ...}:
{ pkgs, agenix, ... }:
{
home.packages = with pkgs; [
# Desktop Applications
@ -28,7 +28,6 @@
nil
nh
agenix.packages.${system}.default
nixpkgs-fmt
# Dev Things
vscode
@ -37,6 +36,5 @@
jetbrains.jdk
jetbrains.rust-rover
];
nixpkgs.config.vesktop.commandLineArgs = "--enable-features=UseOzonePlatform --ozone-platform=wayland";
}