diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-09 12:35:44 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-09 12:54:51 +0100 |
commit | 2122a01f99c6da466b8f0f55c965c11a9043d117 (patch) | |
tree | 6c1697afc30a5bb72635bda7db9b5610386a5b71 /flake/nixosConfigurations/common.nix | |
parent | fix(pkgs/stamp): Fallback to `dot-license` (diff) | |
download | nixos-config-2122a01f99c6da466b8f0f55c965c11a9043d117.tar.gz nixos-config-2122a01f99c6da466b8f0f55c965c11a9043d117.zip |
refactor(modules/legacy/conf/nvim): Move to `by-name`
Diffstat (limited to 'flake/nixosConfigurations/common.nix')
-rw-r--r-- | flake/nixosConfigurations/common.nix | 10 |
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; |