This commit is contained in:
2025-11-02 20:47:31 +00:00
parent a947e43826
commit d159c3a9f1
5 changed files with 21 additions and 8 deletions

12
flake.lock generated
View File

@@ -228,16 +228,16 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1762080814,
"narHash": "sha256-KDLc5obvhY4Ro7jetav3XYfYBX704j+T1ImGXFzHFIU=",
"owner": "nixos",
"lastModified": 1762094371,
"narHash": "sha256-Cz97IuTvpjh+57ZWX4jeNZ01WWOPCsDJ/YkJwKkBhvg=",
"owner": "delafthi",
"repo": "nixpkgs",
"rev": "3f22659254df725d91db50d01ee8ffab38e6aece",
"rev": "2cbd945b39532fd1d5ce1b9314dae12bfbae75a1",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "master",
"owner": "delafthi",
"ref": "push-lmyskwyrymrq",
"repo": "nixpkgs",
"type": "github"
}

View File

@@ -2,7 +2,7 @@
description = "Configuration for my macOS laptops and NixOS server";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/master";
nixpkgs.url = "github:delafthi/nixpkgs/push-lmyskwyrymrq";
flake-parts.url = "github:hercules-ci/flake-parts";
sops-nix = {
url = "github:Mic92/sops-nix";

View File

@@ -1,7 +1,7 @@
{
system.defaults = {
NSGlobalDomain = {
AppleInterfaceStyle = "Dark";
AppleInterfaceStyle = "Light";
AppleShowAllExtensions = true;
ApplePressAndHoldEnabled = false;
KeyRepeat = 2;

View File

@@ -5,6 +5,7 @@
./options.nix
./plugins/blink-cmp.nix
./plugins/conform.nix
./plugins/copilot.nix
./plugins/diffview.nix
./plugins/grug-far.nix
./plugins/harpoon.nix

View File

@@ -0,0 +1,12 @@
{
programs.nixvim.plugins.copilot-lua = {
enable = true;
settings = {
panel.enabled = false;
suggestion = {
enabled = true;
auto_trigger = true;
};
};
};
}