3d2e74d115
Add a new module for Visual Studio Code configuration including default extensions (nix-ide, markdown-all-in-one, prettier) and nixd/nixfmt settings. Enable vscode on 14900k, t2mbp, and uConsole hosts with additional extensions. Also clean up unfree predicate logic in ideapad configuration.
23 lines
531 B
Nix
23 lines
531 B
Nix
{ self, inputs, ... }:
|
|
{
|
|
flake.nixosModules.uConsoleHome =
|
|
{ self, pkgs, ... }:
|
|
{
|
|
imports = [ self.nixosModules.desktopHomeBase ];
|
|
|
|
chiasson.users.extraModules.olivier = [
|
|
{
|
|
chiasson.home.hardware.uconsoleGamepad.enable = true;
|
|
|
|
chiasson.home.editors.vscode = {
|
|
enable = true;
|
|
extensions = with pkgs.vscode-extensions; [
|
|
alefragnani.project-manager
|
|
johnpapa.vscode-peacock
|
|
];
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|