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.
38 lines
904 B
Nix
38 lines
904 B
Nix
{ self, inputs, ... }:
|
|
{
|
|
flake.nixosModules."14900kHome" =
|
|
{ self, pkgs, ... }:
|
|
{
|
|
imports = [ self.nixosModules.desktopHomeBase ];
|
|
|
|
chiasson.users.extraModules.olivier = [
|
|
{
|
|
chiasson.home = {
|
|
extraPackages = [ pkgs.parsec-bin ];
|
|
|
|
browsers = {
|
|
edge.enable = true;
|
|
orion.enable = true;
|
|
zen.enable = true;
|
|
};
|
|
|
|
apps = {
|
|
discord.enable = true;
|
|
spotify.enable = true;
|
|
spotify.openDiscoveryFirewall = true;
|
|
pokeclicker.enable = true;
|
|
};
|
|
|
|
editors.vscode = {
|
|
enable = true;
|
|
extensions = with pkgs.vscode-extensions; [
|
|
alefragnani.project-manager
|
|
johnpapa.vscode-peacock
|
|
];
|
|
};
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|