blob: ccc9019b9a8eb2c7e380fb2d07e9d3bca585f165 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
{ config, inputs, lib, pkgs, user, ... }:
with lib;
{
config = mkIf (config.xserver.enable)
{
services.flatpak.enable = true;
xdg.portal = {
enable = true;
wlr.enable = true;
};
home-manager.users.${user} = {
home.packages = with pkgs; [
libreoffice
hunspell
hunspellDicts.en_US
flatpak
gnome.gnome-software
(pass.withExtensions (exts: [exts.pass-otp ]))
thefuck
mpc-cli
pavucontrol
qbittorrent
ffmpeg
mpv
];
programs.vscode = {
enable = true;
package = pkgs.vscode.fhs;
};
};
};
}
|