re-add programs

This commit is contained in:
twoneis 2023-12-28 18:47:25 +01:00
parent 5a765be407
commit f99bf2770c
3 changed files with 15 additions and 14 deletions

View file

@ -1,20 +1,20 @@
{ ... }: { { ... }: {
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
]; ];
home = { home = {

View file

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