infra/nix/os/devices/steveej-t14/pkg.nix

27 lines
575 B
Nix
Raw Normal View History

2023-02-07 18:24:28 +01:00
{pkgs, ...}: {
home-manager.users.steveej = _: {
imports = [
../../../home-manager/configuration/graphical-fullblown.nix
(_: {
programs.chromium.extensions = [
# can define host-specific extensions here
];
})
];
2023-02-07 18:24:28 +01:00
};
2020-12-21 14:35:50 +01:00
services.teamviewer.enable = true;
system.stateVersion = "20.09";
# TODO: move this into home-manager
environment.systemPackages = with pkgs.gnomeExtensions; [
pop-shell
vitals
# TODO: currently not compatible
# window-switcher-current-workspace-first
# mmod-panel
];
2020-12-21 14:35:50 +01:00
}