Updates Arendia
This commit is contained in:
parent
c665619dcd
commit
670db726e9
12
flake.lock
12
flake.lock
|
@ -129,11 +129,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1743648554,
|
"lastModified": 1743788974,
|
||||||
"narHash": "sha256-23JFd+zd2GamTTdnGuFVeIg8x8C3hLpQJRh/PGTORzo=",
|
"narHash": "sha256-2LeVyQZI2wTkSzMLvnN/kJjXVWp4HCVUoq17Bv8TNTk=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "107352dde4ff3c01cb5a0b3fe17f5beef37215bc",
|
"rev": "0f5908daf890c3d7e7052bef1d6deb0f2710aaa1",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -250,11 +250,11 @@
|
||||||
"treefmt-nix": "treefmt-nix"
|
"treefmt-nix": "treefmt-nix"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1743672862,
|
"lastModified": 1743804175,
|
||||||
"narHash": "sha256-N/ld+hwgR0Cm9WDx4y9oCaoKkBM/cpPsvrv3dxB7eCc=",
|
"narHash": "sha256-MA+9ZO/7McLFsOsWlnjTYPa5SIskH79D10hp9+OCtsQ=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "NUR",
|
"repo": "NUR",
|
||||||
"rev": "caced35d934cd8e39136d49e003afadd9cbfeb5d",
|
"rev": "c0a062c23d9e5ce03ad4edf441403e8643e7888f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -14,7 +14,29 @@ return {
|
||||||
behaviour = {
|
behaviour = {
|
||||||
enable_cursor_planning_mode = false, -- enable cursor planning mode!
|
enable_cursor_planning_mode = false, -- enable cursor planning mode!
|
||||||
},
|
},
|
||||||
hints = { enabled = false }
|
hints = { enabled = false },
|
||||||
|
vendors = {
|
||||||
|
copilot_claude_new = {
|
||||||
|
__inherited_from = "copilot",
|
||||||
|
model = "claude-3.7-sonnet",
|
||||||
|
},
|
||||||
|
copilot_claude_old= {
|
||||||
|
__inherited_from = "copilot",
|
||||||
|
model = "claude-3.5-sonnet",
|
||||||
|
},
|
||||||
|
copilot_claude_thinking = {
|
||||||
|
__inherited_from = "copilot",
|
||||||
|
model = "claude-3.7-sonnet-thought",
|
||||||
|
},
|
||||||
|
copilot_o3_mini = {
|
||||||
|
__inherited_from = "copilot",
|
||||||
|
model = "o3-mini",
|
||||||
|
},
|
||||||
|
copilot_gemini = {
|
||||||
|
__inherited_from = "copilot",
|
||||||
|
model = "gemini-2.0-flash-001",
|
||||||
|
},
|
||||||
|
}
|
||||||
},
|
},
|
||||||
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
|
-- if you want to build from source then do `make BUILD_FROM_SOURCE=true`
|
||||||
build = "nix-shell -p cmake --command make",
|
build = "nix-shell -p cmake --command make",
|
||||||
|
|
|
@ -14,6 +14,7 @@ local function cd_to() {
|
||||||
}
|
}
|
||||||
|
|
||||||
local function get_entries() {
|
local function get_entries() {
|
||||||
|
ls ~/Workspace/ > /dev/null # Ensure the workspace is mounted, slightly ugly hack
|
||||||
file_type=$1
|
file_type=$1
|
||||||
if [ ! -d "$XDG_CONFIG_HOME/fzgo/entries" ]; then
|
if [ ! -d "$XDG_CONFIG_HOME/fzgo/entries" ]; then
|
||||||
return
|
return
|
||||||
|
|
|
@ -39,6 +39,7 @@
|
||||||
services.gnome.evolution-data-server.enable = true;
|
services.gnome.evolution-data-server.enable = true;
|
||||||
services.gnome.gnome-online-accounts.enable = true;
|
services.gnome.gnome-online-accounts.enable = true;
|
||||||
services.gnome.gnome-keyring.enable = true;
|
services.gnome.gnome-keyring.enable = true;
|
||||||
|
services.gnome.sushi.enable = true;
|
||||||
|
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
Loading…
Reference in New Issue