feat(end-rs): Added nix specific config

This commit is contained in:
GaspardCulis 2024-09-21 13:25:01 +02:00
parent 2d716a990b
commit 452d6a3226
3 changed files with 41 additions and 0 deletions

View file

@ -57,6 +57,27 @@
"type": "github"
}
},
"end-rs": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1726917158,
"narHash": "sha256-Ooj+Io2qBvA1IOZ0Ueks4OYHN6ylhHTxSvkmwG1Wt4E=",
"owner": "GaspardCulis",
"repo": "end-rs",
"rev": "11b6f3c1e8d795b67d1b18bc28874429316ff470",
"type": "github"
},
"original": {
"owner": "GaspardCulis",
"ref": "feat/nix",
"repo": "end-rs",
"type": "github"
}
},
"home-manager": {
"inputs": {
"nixpkgs": [
@ -305,6 +326,7 @@
"root": {
"inputs": {
"disko": "disko",
"end-rs": "end-rs",
"home-manager": "home-manager",
"hy3": "hy3",
"hyprland": [

View file

@ -21,6 +21,11 @@
hy3 = {
url = "github:outfoxxed/hy3";
};
end-rs = {
url = "github:GaspardCulis/end-rs/feat/nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {

14
misc/end-rs/default.nix Normal file
View file

@ -0,0 +1,14 @@
{
inputs,
pkgs,
...
}: {
home.file = {
".config/end-rs/config.toml".source = ./config.toml;
};
home.packages = [
inputs.end-rs
pkgs.libnotify
];
}