slim config (for surface)

This commit is contained in:
twoneis 2023-12-27 21:13:16 +01:00
parent fc80f4ef23
commit 9dbea52a73
3 changed files with 13 additions and 14 deletions

View file

@ -1,17 +1,17 @@
{ ... }: { { ... }: {
imports = [ imports = [
./art # ./art
./browser ./browser
./chat # ./chat
./discord ./discord
./direnv ./direnv
./editor ./editor
./email # ./email
./games ./games
./gdb ./gdb
./git ./git
./media ./media
./notes # ./notes
./terminal ./terminal
./utils ./utils
./voice ./voice

View file

@ -5,10 +5,9 @@
extraPackages = with pkgs; [ nil marksman ]; extraPackages = with pkgs; [ nil marksman ];
settings = import ./helix-config.nix; settings = import ./helix-config.nix;
}; };
# programs.vscode = {
programs.vscode = { # enable = true;
enable = true; # enableUpdateCheck = false;
enableUpdateCheck = false; # package = pkgs.vscodium;
package = pkgs.vscodium; # };
};
} }

View file

@ -1,9 +1,9 @@
{ pkgs, ... }: { { pkgs, ... }: {
home.packages = with pkgs; [ home.packages = with pkgs; [
steam # steam
prismlauncher-qt5 # prismlauncher-qt5
lutris lutris
winePackages.stagingFull # winePackages.stagingFull
r2modman # r2modman
]; ];
} }