update after a long time ig

This commit is contained in:
Nico
2025-10-08 20:31:44 +02:00
parent e39404d44d
commit f60bf4608f
11 changed files with 471 additions and 26 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, inputs, ... }:
{ config, pkgs, lib, system, inputs, ... }:
{
home.username = "nico";
@@ -18,7 +18,7 @@
};
home.packages = with pkgs; [
floorp
# floorp
];
programs.zen-browser.enable = true;
@@ -49,5 +49,17 @@
programs.home-manager.enable = true;
# options = {
# services.zed = {
# enable = lib.mkEnableOption "Zed Editor";
# };
# };
#
# config = lib.mkIf config.services.zed.enable {
# environment.systemPackages = [
# inputs.zed.packages.${system}.default
# pkgs.nixd # System-wide Nix LSP installation
# ];
# };
}