Merge branch 'avoid-digga' of github.com:aciceri/fleet into avoid-digga

This commit is contained in:
Andrea Ciceri 2022-07-30 11:40:37 +02:00
commit 55ead06206
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
13 changed files with 65 additions and 12 deletions

View file

@ -0,0 +1,6 @@
{pkgs, ...}: {
programs.chromium = {
enable = true;
package = pkgs.google-chrome;
};
}

View file

@ -0,0 +1,3 @@
{pkgs, ...}: {
home.packages = [pkgs.element-desktop];
}

View file

@ -29,6 +29,7 @@
"-c"
];
content.pdfjs = true;
tabs.tabs_are_windows = true;
};
};
home.packages = [

View file

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

View file

@ -0,0 +1,7 @@
{
services.udiskie = {
enable = true;
automount = true;
tray = "never";
};
}

View file

@ -0,0 +1,8 @@
{pkgs, ...}: {
programs.vscode = {
enable = true;
# For a few reasons sometimes I'm forced to use VSCode and I don't have time to nixifiy even its configuration.
# This is why I'm using the FHS version. Purity gods, forgive me!
package = pkgs.vscode-fhs;
};
}