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": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1762080814, "lastModified": 1762094371,
"narHash": "sha256-KDLc5obvhY4Ro7jetav3XYfYBX704j+T1ImGXFzHFIU=", "narHash": "sha256-Cz97IuTvpjh+57ZWX4jeNZ01WWOPCsDJ/YkJwKkBhvg=",
"owner": "nixos", "owner": "delafthi",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "3f22659254df725d91db50d01ee8ffab38e6aece", "rev": "2cbd945b39532fd1d5ce1b9314dae12bfbae75a1",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "nixos", "owner": "delafthi",
"ref": "master", "ref": "push-lmyskwyrymrq",
"repo": "nixpkgs", "repo": "nixpkgs",
"type": "github" "type": "github"
} }

View File

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

View File

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

View File

@@ -5,6 +5,7 @@
./options.nix ./options.nix
./plugins/blink-cmp.nix ./plugins/blink-cmp.nix
./plugins/conform.nix ./plugins/conform.nix
./plugins/copilot.nix
./plugins/diffview.nix ./plugins/diffview.nix
./plugins/grug-far.nix ./plugins/grug-far.nix
./plugins/harpoon.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;
};
};
};
}