From 2122a01f99c6da466b8f0f55c965c11a9043d117 Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Sat, 9 Nov 2024 12:35:44 +0100 Subject: refactor(modules/legacy/conf/nvim): Move to `by-name` --- flake/nixosConfigurations/common.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'flake/nixosConfigurations/common.nix') diff --git a/flake/nixosConfigurations/common.nix b/flake/nixosConfigurations/common.nix index 68758bb6..d4660ef7 100644 --- a/flake/nixosConfigurations/common.nix +++ b/flake/nixosConfigurations/common.nix @@ -1,6 +1,10 @@ # This file contains common configuration applied to every host. # It should only `enable` options defined in the `modules` directory. -{config, ...}: { +{ + config, + pkgs, + ... +}: { soispha = { boot.enable = true; cleanup.enable = true; @@ -79,6 +83,10 @@ }; programs = { + nvim = { + enable = true; + shell = pkgs.zsh; + }; atuin.enable = true; git.enable = true; imv.enable = true; -- cgit 1.4.1