initial commit

This commit is contained in:
DashieTM 2024-04-15 18:52:30 +02:00
parent 6671b54dd2
commit e50591b2ec
162 changed files with 922 additions and 6328 deletions

View file

@ -1,40 +1,36 @@
{ inputs
, lib
, pkgs
{ lib
, fetchCrate
, rustPlatform
, ...
}: {
imports = [
./config.nix
./anyrun.nix
./ironbar.nix
];
home.packages = with pkgs; [
(rustPackage {
name = "oxinoti";
home.packages = [
rustPlatform.buildRustPackage
rec {
pname = "oxinoti";
version = "0.1.1";
src = fetchCrate {
inherit name version;
sha256 = lib.fakesha256;
inherit pname version;
hash = lib.fakehash;
};
})
(rustPackage {
name = "oxidash";
version = "0.1.0";
src = fetchCrate {
inherit name version;
sha256 = lib.fakesha256;
};
})
(rustPackage {
name = "oxishut";
version = "0.1.0";
src = fetchCrate {
inherit name version;
sha256 = lib.fakesha256;
};
})
}
#rustPlatform.buildRustPackage
#{
# pname = "oxidash";
# version = "0.1.0";
# #src = fetchCrate {
# # inherit name version;
# # sha256 = lib.fakesha256;
# #};
#}
#rustPlatform.buildRustPackage
#{
# pname = "oxishut";
# version = "0.1.0";
# #src = fetchCrate {
# # inherit name version;
# # sha256 = lib.fakesha256;
# #};
#}
];
}