aboutsummaryrefslogtreecommitdiffstats
path: root/flake/nixosConfigurations
diff options
context:
space:
mode:
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;