Changes
This commit is contained in:
parent
8ea644f665
commit
3b41645cdf
|
@ -35,6 +35,10 @@ in
|
|||
};
|
||||
|
||||
# TODO: Remove everything below, it is here out of convenience and should be elsewhere
|
||||
networking.nameservers = [
|
||||
"9.9.9.9"
|
||||
"149.112.112.112"
|
||||
];
|
||||
programs.dconf.enable = true;
|
||||
services.libinput.enable = true;
|
||||
modules.unfree.enable = true;
|
||||
|
|
|
@ -24,7 +24,11 @@ in
|
|||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
modules.unfree.allowedPackages = [ "vscode" ];
|
||||
modules.unfree.allowedPackages = [
|
||||
"vscode"
|
||||
"vscode-extension-github-copilot"
|
||||
"vscode-extension-github-copilot-chat"
|
||||
];
|
||||
|
||||
theming.fonts.extraFonts = [ cfg.codeFont ];
|
||||
|
||||
|
@ -38,6 +42,8 @@ in
|
|||
mkhl.direnv
|
||||
usernamehw.errorlens
|
||||
gruntfuggly.todo-tree
|
||||
github.copilot
|
||||
github.copilot-chat
|
||||
];
|
||||
|
||||
userSettings = {
|
||||
|
|
|
@ -69,10 +69,10 @@
|
|||
darkMode = false;
|
||||
};
|
||||
themes.catppuccin = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
flavor = "mocha";
|
||||
};
|
||||
themes.sakura.enable = false;
|
||||
themes.sakura.enable = true;
|
||||
|
||||
# TODO: Remove
|
||||
# Nice themes:
|
||||
|
|
Loading…
Reference in New Issue