im dissapointed with this

This commit is contained in:
Aria Nolan 2024-04-28 17:53:02 -04:00
parent eeb3d215d8
commit c48ccb04f9
3 changed files with 46 additions and 6 deletions

View file

@ -411,6 +411,23 @@
"type": "github"
}
},
"radian": {
"flake": false,
"locked": {
"lastModified": 1708912915,
"narHash": "sha256-zFTZo49qiP6chmVPX5j31agJT+qS3LdHkFMSf1NYZyg=",
"owner": "radian-software",
"repo": "radian",
"rev": "185c76b87f485169633769f4edac92a5c9e2b834",
"type": "github"
},
"original": {
"owner": "radian-software",
"ref": "main",
"repo": "radian",
"type": "github"
}
},
"root": {
"inputs": {
"agenix": "agenix",
@ -419,7 +436,8 @@
"nixos-hardware": "nixos-hardware",
"nixpkgs": "nixpkgs_2",
"nixvim": "nixvim",
"nur": "nur"
"nur": "nur",
"radian": "radian"
}
},
"systems": {

View file

@ -29,6 +29,10 @@
inputs.nixpkgs.follows = "nixpkgs";
url = "gitlab:doronbehar/nix-matlab";
};
radian = {
url = "github:radian-software/radian/main";
flake = false;
};
};
# pass in the urls defined above
@ -41,7 +45,8 @@
nur,
agenix,
nixvim,
nix-matlab,
nix-matlab,
radian,
...
} @ inputs: let
system = "x86_64-linux";

View file

@ -1,4 +1,4 @@
{pkgs, ...}: {
{pkgs, inputs, ...}: {
imports = [
./programs
./services
@ -24,6 +24,7 @@
];
packages = with pkgs; [
fd
watchexec
emacs
vimpc
ashuffle
@ -130,9 +131,25 @@
};
};
xdg.configFile."./" = {
source = ./.config;
recursive = true;
xdg.configFile."emacs/init.el" = {
source = inputs.radian + /emacs/init.el;
};
xdg.configFile."emacs/radian.el" = {
source = inputs.radian + /emacs/radian.el;
};
xdg.configFile."emacs/early-init.el" = {
source = inputs.radian + /emacs/early-init.el;
};
xdg.configFile."emacs/straight/versions/radian.el" = {
source = inputs.radian + /emacs/versions.el;
};
# xdg.configFile."./" = {
# source = ./.config;
# recursive = true;
# };
}