Changed the name of the zed module

This commit is contained in:
Alexandre 2025-12-28 00:24:37 +01:00
parent 19e97d589e
commit e3ed1dac5b
3 changed files with 6 additions and 10 deletions

View File

@ -17,12 +17,12 @@
networking.hostName = "nixos"; # Define your hostname. networking.hostName = "nixos"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant. # networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
# Enable Flakes # Enable Flakes
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];
# Enables SDDM # Enables SDDM
services = { services = {
xserver = { xserver = {
enable = true; enable = true;
}; };
@ -84,7 +84,7 @@
# $ nix search wget # $ nix search wget
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
# vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default.
wget wget
git git
tree tree
kitty kitty
@ -100,7 +100,7 @@
cudatoolkit cudatoolkit
# Theme SDDM # Theme SDDM
sddm-astronaut sddm-astronaut
]; ];
# Some programs need SUID wrappers, can be configured further or are # Some programs need SUID wrappers, can be configured further or are

View File

@ -2,7 +2,7 @@
{ {
# This file is used to import all modules required by this setup. # This file is used to import all modules required by this setup.
imports = imports =
[ [
inputs.sops-nix.nixosModules.sops inputs.sops-nix.nixosModules.sops
../../modules/nixos/secrets.nix # Sops ../../modules/nixos/secrets.nix # Sops

View File

@ -346,11 +346,7 @@ let
in in
{ {
options.programs.zed-ai = { options.programs.zed-ai = {
enable = lib.mkEnableOption { enable = lib.mkEnableOption "Zed AI configuration with Chain of Thought";
type = lib.types.bool;
default = false;
description = "Zed AI configuration with Chain of Thought";
};
enableCoTModels = lib.mkOption { enableCoTModels = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;