up
This commit is contained in:
12
flake.lock
generated
12
flake.lock
generated
@@ -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"
|
||||
}
|
||||
|
||||
@@ -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";
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
system.defaults = {
|
||||
NSGlobalDomain = {
|
||||
AppleInterfaceStyle = "Dark";
|
||||
AppleInterfaceStyle = "Light";
|
||||
AppleShowAllExtensions = true;
|
||||
ApplePressAndHoldEnabled = false;
|
||||
KeyRepeat = 2;
|
||||
|
||||
@@ -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
|
||||
|
||||
12
modules/home/neovim/plugins/copilot.nix
Normal file
12
modules/home/neovim/plugins/copilot.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
programs.nixvim.plugins.copilot-lua = {
|
||||
enable = true;
|
||||
settings = {
|
||||
panel.enabled = false;
|
||||
suggestion = {
|
||||
enabled = true;
|
||||
auto_trigger = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user