chore: add pixi alongside mojo
This commit is contained in:
parent
76cf8e414f
commit
5c01bf3bec
2 changed files with 18 additions and 0 deletions
17
home-manager/custom.nix
Normal file
17
home-manager/custom.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
|
let
|
||||||
|
noverbySrc = builtins.fetchGit {
|
||||||
|
url = "https://codeberg.org/sposito/noverby";
|
||||||
|
ref = "main";
|
||||||
|
rev = "393b8fbe74b0382a9cf7cbfd33e2a3e2b430ba71";
|
||||||
|
};
|
||||||
|
|
||||||
|
mojo = pkgs.callPackage (noverbySrc + "/packages/mojo.nix") { };
|
||||||
|
magic = pkgs.callPackage (noverbySrc + "/packages/magic.nix") { };
|
||||||
|
in {
|
||||||
|
home.packages = [
|
||||||
|
mojo
|
||||||
|
magic
|
||||||
|
pkgs.pixi
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
./custom.nix
|
||||||
./gnome
|
./gnome
|
||||||
./nvim
|
./nvim
|
||||||
./zsh.nix
|
./zsh.nix
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue