nixos/roles/home/desktop.nix

43 lines
582 B
Nix
Raw Permalink Normal View History

2021-10-14 12:53:44 +01:00
{ pkgs, ... }:
let
albert_autostart = (pkgs.makeAutostartItem {
2021-11-25 11:42:32 +00:00
name = "albert";
2021-10-14 12:53:44 +01:00
package = pkgs.albert;
});
guake_autostart = (pkgs.makeAutostartItem {
2021-11-25 11:42:32 +00:00
name = "guake";
2021-10-14 12:53:44 +01:00
package = pkgs.guake;
});
2023-02-11 02:29:48 +00:00
in
{
2021-11-25 11:42:32 +00:00
imports = [ ./gnome.nix ];
2021-10-14 12:53:44 +01:00
2021-11-25 11:42:32 +00:00
nixpkgs.config.allowUnfree = true;
home.packages = with pkgs; [
albert
guake
2021-10-14 12:53:44 +01:00
2021-11-25 11:42:32 +00:00
firefox
brave
chromium
2021-10-14 12:53:44 +01:00
2021-11-25 11:42:32 +00:00
slack
signal-desktop
teams
discord
element-desktop
2021-10-14 12:53:44 +01:00
2021-11-25 11:42:32 +00:00
spotify
2021-10-14 12:53:44 +01:00
2021-11-25 11:42:32 +00:00
gparted
2021-10-14 12:53:44 +01:00
2021-11-25 11:42:32 +00:00
libreoffice
vscode
jetbrains.idea-ultimate
2021-10-14 12:53:44 +01:00
2021-11-25 11:42:32 +00:00
albert_autostart
guake_autostart
];
}