up
This commit is contained in:
12
flake.lock
generated
12
flake.lock
generated
@@ -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"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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";
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
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