dev theme

This commit is contained in:
Arthur Wambst 2025-02-20 11:53:53 +01:00
parent 6cc15d7f2e
commit 1e492e0a02
2 changed files with 23 additions and 2 deletions

View File

@ -198,10 +198,27 @@
"type": "github" "type": "github"
} }
}, },
"plugin-dracula": {
"flake": false,
"locked": {
"lastModified": 1734597715,
"narHash": "sha256-9iRI5NW3mcVzduitY4sr679dRWAWVbZuCAEfgM1OIOs=",
"owner": "Mofiqul",
"repo": "dracula.nvim",
"rev": "515acae4fd294fcefa5b15237a333c2606e958d1",
"type": "github"
},
"original": {
"owner": "Mofiqul",
"repo": "dracula.nvim",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"neovim": "neovim", "neovim": "neovim",
"nixpkgs": "nixpkgs" "nixpkgs": "nixpkgs",
"plugin-dracula": "plugin-dracula"
} }
}, },
"treefmt-nix": { "treefmt-nix": {

View File

@ -9,8 +9,12 @@
url = "github:nix-community/neovim-nightly-overlay"; url = "github:nix-community/neovim-nightly-overlay";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
plugin-dracula = {
url = "github:Mofiqul/dracula.nvim";
flake = false;
};
}; };
outputs = { self, nixpkgs, neovim }: { outputs = { self, nixpkgs, neovim, ... }@inputs: {
nixosModules.neovim = { config, pkgs, ...}: { nixosModules.neovim = { config, pkgs, ...}: {
# Installation de Neovim en tant que package système # Installation de Neovim en tant que package système
environment.systemPackages = [ neovim.packages.${pkgs.system}.neovim ]; environment.systemPackages = [ neovim.packages.${pkgs.system}.neovim ];