diff options
| author | quentin@aristote.fr <quentin@aristote.fr> | 2025-02-16 19:34:47 +0100 |
|---|---|---|
| committer | quentin@aristote.fr <quentin@aristote.fr> | 2025-02-16 21:42:07 +0100 |
| commit | 8ea47e4954fc8d062b9be43ee32b06bd06700141 (patch) | |
| tree | eabf1cae0c1f693b82d2f0b00d4ddc0cfa37f6cc /flake.nix | |
| parent | 55d71faf6c7d49a2a3e40b5dc9b80a94bf71fa55 (diff) | |
move devenv out of flake
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 16 |
1 files changed, 1 insertions, 15 deletions
@@ -2,31 +2,17 @@ description = "Quentin Aristote's personal information."; inputs = { - devenv.url = "github:cachix/devenv"; my-nixpkgs.url = "github:qaristote/my-nixpkgs"; nixpkgs = {}; }; - nixConfig = { - extra-trusted-public-keys = "devenv.cachix.org-1:w1cLUi8dv3hnoSPGAuibQv+f9TZLr6cv/Hm9XgU50cw="; - extra-trusted-substituters = "https://devenv.cachix.org"; - }; - outputs = { flake-parts, my-nixpkgs, ... } @ inputs: flake-parts.lib.mkFlake {inherit inputs;} { - imports = builtins.attrValues {inherit (my-nixpkgs.flakeModules) personal devenv;}; + imports = builtins.attrValues {inherit (my-nixpkgs.flakeModules) personal;}; flake.lib.formatWith = attrs: import ./default.nix attrs; - perSystem = { - devenv.shells.default = { - languages.nix = { - enable = true; - packaging.enable = true; - }; - }; - }; }; } |
