feat(end-rs): Added nix specific config
This commit is contained in:
parent
2d716a990b
commit
452d6a3226
3 changed files with 41 additions and 0 deletions
22
flake.lock
22
flake.lock
|
@ -57,6 +57,27 @@
|
||||||
"type": "github"
|
"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": {
|
"home-manager": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"nixpkgs": [
|
"nixpkgs": [
|
||||||
|
@ -305,6 +326,7 @@
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"disko": "disko",
|
"disko": "disko",
|
||||||
|
"end-rs": "end-rs",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
"hy3": "hy3",
|
"hy3": "hy3",
|
||||||
"hyprland": [
|
"hyprland": [
|
||||||
|
|
|
@ -21,6 +21,11 @@
|
||||||
hy3 = {
|
hy3 = {
|
||||||
url = "github:outfoxxed/hy3";
|
url = "github:outfoxxed/hy3";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
end-rs = {
|
||||||
|
url = "github:GaspardCulis/end-rs/feat/nix";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
|
|
14
misc/end-rs/default.nix
Normal file
14
misc/end-rs/default.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{
|
||||||
|
inputs,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
|
home.file = {
|
||||||
|
".config/end-rs/config.toml".source = ./config.toml;
|
||||||
|
};
|
||||||
|
|
||||||
|
home.packages = [
|
||||||
|
inputs.end-rs
|
||||||
|
pkgs.libnotify
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue