Refactor app

This commit is contained in:
Florian RICHER 2024-02-17 19:34:44 +01:00
parent 479cebb66a
commit 17583c6fce
6 changed files with 25 additions and 9 deletions

View file

@ -7,6 +7,10 @@
./programs/vscode.nix
./programs/mise.nix
./programs/chromium.nix
./programs/discord.nix
./programs/skype.nix
./programs/slack.nix
./programs/thunderbird.nix
];
home = {

View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [discord];
}

5
home/programs/skype.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [skypeforlinux];
}

5
home/programs/slack.nix Normal file
View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [slack];
}

View file

@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
home.packages = with pkgs; [thunderbird];
}