initial commit
This commit is contained in:
parent
6671b54dd2
commit
e50591b2ec
162 changed files with 922 additions and 6328 deletions
|
|
@ -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;
|
||||
# #};
|
||||
#}
|
||||
];
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue