Compare commits
No commits in common. "de7a2753df971cd276baeacb7ec5a6b625d04e8e" and "02b0b569ea79937bce140d82ed933aaa250e4df0" have entirely different histories.
de7a2753df
...
02b0b569ea
4 changed files with 8 additions and 55 deletions
|
@ -12,6 +12,7 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
|
|
||||||
services.flatpak = {
|
services.flatpak = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
|
@ -23,12 +24,19 @@ in
|
||||||
{ appId = "net.lutris.Lutris"; origin = "flathub"; }
|
{ appId = "net.lutris.Lutris"; origin = "flathub"; }
|
||||||
|
|
||||||
# Pro
|
# Pro
|
||||||
|
{ appId = "com.slack.Slack"; origin = "flathub"; }
|
||||||
|
{ appId = "com.skype.Client"; origin = "flathub"; }
|
||||||
|
{ appId = "org.mozilla.Thunderbird"; origin = "flathub"; }
|
||||||
{ appId = "ch.protonmail.protonmail-bridge"; origin = "flathub"; }
|
{ appId = "ch.protonmail.protonmail-bridge"; origin = "flathub"; }
|
||||||
{ appId = "org.kde.neochat"; origin = "flathub"; }
|
{ appId = "org.kde.neochat"; origin = "flathub"; }
|
||||||
|
{ appId = "com.visualstudio.code"; origin = "flathub"; }
|
||||||
|
|
||||||
# Loisir
|
# Loisir
|
||||||
{ appId = "com.spotify.Client"; origin = "flathub"; }
|
{ appId = "com.spotify.Client"; origin = "flathub"; }
|
||||||
|
{ appId = "io.gitlab.news_flash.NewsFlash"; origin = "flathub"; }
|
||||||
{ appId = "org.videolan.VLC"; origin = "flathub"; }
|
{ appId = "org.videolan.VLC"; origin = "flathub"; }
|
||||||
|
{ appId = "com.obsproject.Studio"; origin = "flathub"; }
|
||||||
|
{ appId = "io.github.achetagames.epic_asset_manager"; origin = "flathub"; }
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
imports = [
|
imports = [
|
||||||
../common.nix
|
../common.nix
|
||||||
./apps
|
./apps
|
||||||
./editors
|
|
||||||
./desktop
|
./desktop
|
||||||
./shell
|
./shell
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
{ config, pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
|
||||||
imports = [
|
|
||||||
./vscode
|
|
||||||
];
|
|
||||||
}
|
|
|
@ -1,47 +0,0 @@
|
||||||
{ config, pkgs, lib, ... }:
|
|
||||||
|
|
||||||
with lib;
|
|
||||||
let
|
|
||||||
cfg = config.modules.home.editors.vscode;
|
|
||||||
in
|
|
||||||
{
|
|
||||||
options.modules.home.editors.vscode = {
|
|
||||||
enable = mkEnableOption ''
|
|
||||||
Enable vscode with my custom configurations
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
config = mkIf cfg.enable {
|
|
||||||
programs.vscode = {
|
|
||||||
enable = true;
|
|
||||||
enableUpdateCheck = false;
|
|
||||||
enableExtensionUpdateCheck = false;
|
|
||||||
|
|
||||||
userSettings = {
|
|
||||||
"files.autoSave" = "onFocusChange";
|
|
||||||
"emmet.includeLanguages" = {
|
|
||||||
"phoenix-heex" = "html";
|
|
||||||
};
|
|
||||||
"git.autofetch" = true;
|
|
||||||
};
|
|
||||||
|
|
||||||
userTasks = {};
|
|
||||||
|
|
||||||
extensions = with pkgs; with vscode-extensions; [
|
|
||||||
# Nix
|
|
||||||
bbenoist.nix
|
|
||||||
|
|
||||||
# Rust
|
|
||||||
rust-lang.rust-analyzer
|
|
||||||
serayuzgur.crates
|
|
||||||
tamasfe.even-better-toml
|
|
||||||
|
|
||||||
# Phoenix
|
|
||||||
phoenixframework.phoenix
|
|
||||||
elixir-lsp.vscode-elixir-ls
|
|
||||||
|
|
||||||
# Ruby
|
|
||||||
shopify.ruby-lsp
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Add table
Reference in a new issue