Remove unnecessary neovim installation from server

This commit is contained in:
DashieTM 2024-08-04 17:21:20 +02:00
parent 0f02a1944b
commit ee9b48c5b1
2 changed files with 2 additions and 3 deletions

View file

@ -72,7 +72,7 @@
nixosConfigurations = (dashielib.build_systems [ "marmo" "overheating" "spaceship" ]) // { nixosConfigurations = (dashielib.build_systems [ "marmo" "overheating" "spaceship" ]) // {
server = inputs.stable.lib.nixosSystem { server = inputs.stable.lib.nixosSystem {
specialArgs = { specialArgs = {
inherit inputs; pkgs' = stable; inherit inputs; pkgs = stable;
}; };
modules = [ modules = [
inputs.sops-nix.nixosModules.sops inputs.sops-nix.nixosModules.sops

View file

@ -1,4 +1,4 @@
{ config, pkgs, unstable, inputs, ... }: { config, pkgs, inputs, ... }:
let let
nextcloud_pw = (builtins.readFile /etc/nixos/nextcloud); nextcloud_pw = (builtins.readFile /etc/nixos/nextcloud);
forgejo_pw = (builtins.readFile /etc/nixos/dbpw/forgejo); forgejo_pw = (builtins.readFile /etc/nixos/dbpw/forgejo);
@ -41,7 +41,6 @@ in
extraGroups = [ "wheel" ]; # Enable sudo for the user. extraGroups = [ "wheel" ]; # Enable sudo for the user.
packages = [ packages = [
inputs.dashvim.nixosModules.packages."x86_64-linux".default inputs.dashvim.nixosModules.packages."x86_64-linux".default
unstable.neovim
pkgs.fuse pkgs.fuse
pkgs.ntfs3g pkgs.ntfs3g
pkgs.rsync pkgs.rsync