Compare commits
2 Commits
447fe20041
...
bfa912f513
| Author | SHA1 | Date | |
|---|---|---|---|
| bfa912f513 | |||
| 7e7ffa6fa7 |
@@ -15,12 +15,6 @@
|
|||||||
|
|
||||||
# AI Agents
|
# AI Agents
|
||||||
github.copilot
|
github.copilot
|
||||||
(pkgs.vscode-utils.extensionFromVscodeMarketplace {
|
|
||||||
name = "vscode-augment";
|
|
||||||
publisher = "augment";
|
|
||||||
version = "0.442.0";
|
|
||||||
sha256 = "sha256-TzoafGCmaOEOUHh3XWPrLe/ysICviaOJcpMVqWY/Nr4=";
|
|
||||||
})
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,14 @@
|
|||||||
return {
|
return {
|
||||||
"zbirenbaum/copilot.lua",
|
{
|
||||||
opts = {
|
"zbirenbaum/copilot.lua",
|
||||||
filetypes = {
|
opts = {
|
||||||
markdown = false,
|
filetypes = {
|
||||||
help = false,
|
markdown = false,
|
||||||
|
help = false,
|
||||||
|
},
|
||||||
|
suggestion = {
|
||||||
|
enabled = false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,16 @@
|
|||||||
{ ... }: {
|
{ ... }:
|
||||||
|
{
|
||||||
# RealtimeKit hands out realtime scheduling priority to user processes on
|
# RealtimeKit hands out realtime scheduling priority to user processes on
|
||||||
# demand, e.g. audio
|
# demand, e.g. audio
|
||||||
security.rtkit.enable = true;
|
security.rtkit.enable = true;
|
||||||
|
|
||||||
# Enable sound with pipewire.
|
# Enable sound with pipewire.
|
||||||
services.pulseaudio.enable = false;
|
services.pulseaudio = {
|
||||||
|
enable = false;
|
||||||
|
daemon.config = {
|
||||||
|
exit-idle-time = -1;
|
||||||
|
};
|
||||||
|
};
|
||||||
services.pipewire = {
|
services.pipewire = {
|
||||||
enable = true;
|
enable = true;
|
||||||
alsa.enable = true;
|
alsa.enable = true;
|
||||||
|
|||||||
@@ -19,6 +19,7 @@
|
|||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
slack
|
slack
|
||||||
zoom-us
|
zoom-us
|
||||||
|
chromium
|
||||||
];
|
];
|
||||||
|
|
||||||
home.stateVersion = "24.11";
|
home.stateVersion = "24.11";
|
||||||
|
|||||||
Reference in New Issue
Block a user