aboutsummaryrefslogtreecommitdiffstats
path: root/flake/nixosConfigurations
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-09 12:35:44 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-09 12:54:51 +0100
commit2122a01f99c6da466b8f0f55c965c11a9043d117 (patch)
tree6c1697afc30a5bb72635bda7db9b5610386a5b71 /flake/nixosConfigurations
parentfix(pkgs/stamp): Fallback to `dot-license` (diff)
downloadnixos-config-2122a01f99c6da466b8f0f55c965c11a9043d117.zip
refactor(modules/legacy/conf/nvim): Move to `by-name`
Diffstat (limited to 'flake/nixosConfigurations')
-rw-r--r--flake/nixosConfigurations/common.nix10
1 files changed, 9 insertions, 1 deletions
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;