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