Add arrpc
This commit is contained in:
parent
de8f3841aa
commit
b5d6c46c51
3 changed files with 41 additions and 4 deletions
21
flake.lock
21
flake.lock
|
@ -16,6 +16,26 @@
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"arrpc": {
|
||||||
|
"inputs": {
|
||||||
|
"nixpkgs": [
|
||||||
|
"nixpkgs"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"locked": {
|
||||||
|
"lastModified": 1682178574,
|
||||||
|
"narHash": "sha256-CMEeluAfiDt0c9rl9vcbqgOxm/0nFtmHJYiTCIEDLGo=",
|
||||||
|
"owner": "notashelf",
|
||||||
|
"repo": "arrpc-flake",
|
||||||
|
"rev": "965b885e182a695e45fba3ad97ec85e1fe31171a",
|
||||||
|
"type": "github"
|
||||||
|
},
|
||||||
|
"original": {
|
||||||
|
"owner": "notashelf",
|
||||||
|
"repo": "arrpc-flake",
|
||||||
|
"type": "github"
|
||||||
|
}
|
||||||
|
},
|
||||||
"bufdelete-nvim": {
|
"bufdelete-nvim": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
|
@ -1419,6 +1439,7 @@
|
||||||
},
|
},
|
||||||
"root": {
|
"root": {
|
||||||
"inputs": {
|
"inputs": {
|
||||||
|
"arrpc": "arrpc",
|
||||||
"home-manager": "home-manager",
|
"home-manager": "home-manager",
|
||||||
"neovim-flake": "neovim-flake",
|
"neovim-flake": "neovim-flake",
|
||||||
"nixpkgs": "nixpkgs_4",
|
"nixpkgs": "nixpkgs_4",
|
||||||
|
|
|
@ -18,8 +18,11 @@
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
# TODO: Add any other flake you might need
|
# arrpc
|
||||||
# nixos-hardware.url = "github:nixos/nixos-hardware";
|
arrpc = {
|
||||||
|
url = "github:notashelf/arrpc-flake";
|
||||||
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# This is your home-manager configuration file
|
# This is your home-manager configuration file
|
||||||
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
|
# Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix)
|
||||||
{
|
{
|
||||||
outputs,
|
inputs,
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
|
@ -20,7 +20,20 @@
|
||||||
home = {
|
home = {
|
||||||
username = "floppydisk";
|
username = "floppydisk";
|
||||||
homeDirectory = "/home/floppydisk";
|
homeDirectory = "/home/floppydisk";
|
||||||
packages = with pkgs; [steam vscode _1password-gui _1password neofetch microsoft-edge webcord-vencord jetbrains.ruby-mine jetbrains.rider jetbrains.phpstorm jetbrains.idea-ultimate];
|
packages = with pkgs; [
|
||||||
|
steam
|
||||||
|
vscode
|
||||||
|
_1password-gui
|
||||||
|
_1password
|
||||||
|
neofetch
|
||||||
|
microsoft-edge
|
||||||
|
webcord-vencord
|
||||||
|
jetbrains.ruby-mine
|
||||||
|
jetbrains.rider
|
||||||
|
jetbrains.phpstorm
|
||||||
|
jetbrains.idea-ultimate
|
||||||
|
inputs.arrpc.packages.${pkgs.system}.arrpc
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
# Add stuff for your user as you see fit:
|
# Add stuff for your user as you see fit:
|
||||||
|
|
Loading…
Reference in a new issue