tree-wide: move to new gnome/cinnamon app toplevels
Some checks are pending
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-build / slateport-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run

This commit is contained in:
Aly Raffauf 2024-10-01 18:29:24 -04:00
parent 165f79da5e
commit 71499fb75d
4 changed files with 8 additions and 8 deletions

View file

@ -23,7 +23,7 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
blueberry blueberry
gnome.file-roller file-roller
libnotify libnotify
networkmanagerapplet networkmanagerapplet
]; ];

View file

@ -38,7 +38,7 @@ in {
nemo.enable = lib.mkOption { nemo.enable = lib.mkOption {
description = "Cinnamon Nemo file manager."; description = "Cinnamon Nemo file manager.";
default = cfg.defaultApps.fileManager == pkgs.cinnamon.nemo; default = cfg.defaultApps.fileManager == pkgs.nemo;
type = lib.types.bool; type = lib.types.bool;
}; };
@ -79,8 +79,8 @@ in {
enable = lib.mkEnableOption "Declaratively set default apps and file associations."; enable = lib.mkEnableOption "Declaratively set default apps and file associations.";
audioPlayer = lib.mkPackageOption pkgs "audio player" {default = ["celluloid"];}; audioPlayer = lib.mkPackageOption pkgs "audio player" {default = ["celluloid"];};
editor = lib.mkPackageOption pkgs "text editor" {default = ["vscodium"];}; editor = lib.mkPackageOption pkgs "text editor" {default = ["vscodium"];};
fileManager = lib.mkPackageOption pkgs "file manager" {default = ["cinnamon" "nemo"];}; fileManager = lib.mkPackageOption pkgs "file manager" {default = ["nemo"];};
imageViewer = lib.mkPackageOption pkgs "image viewer" {default = ["gnome" "eog"];}; imageViewer = lib.mkPackageOption pkgs "image viewer" {default = ["eog"];};
pdfViewer = lib.mkPackageOption pkgs "pdf viewer" {default = ["evince"];}; pdfViewer = lib.mkPackageOption pkgs "pdf viewer" {default = ["evince"];};
terminal = lib.mkPackageOption pkgs "terminal emulator" {default = ["kitty"];}; terminal = lib.mkPackageOption pkgs "terminal emulator" {default = ["kitty"];};
terminalEditor = lib.mkPackageOption pkgs "terminal text editor" {default = ["vim"];}; terminalEditor = lib.mkPackageOption pkgs "terminal text editor" {default = ["vim"];};

View file

@ -8,7 +8,7 @@
in { in {
config = lib.mkIf cfg.theme.enable { config = lib.mkIf cfg.theme.enable {
home.packages = [ home.packages = [
pkgs.gnome.adwaita-icon-theme pkgs.adwaita-icon-theme
pkgs.liberation_ttf pkgs.liberation_ttf
]; ];

View file

@ -5,7 +5,7 @@
... ...
}: { }: {
config = lib.mkIf config.ar.services.flatpak.enable { config = lib.mkIf config.ar.services.flatpak.enable {
environment.systemPackages = with pkgs; [gnome.gnome-software]; environment.systemPackages = with pkgs; [gnome-software];
fileSystems = let fileSystems = let
mkRoSymBind = path: { mkRoSymBind = path: {
@ -18,8 +18,8 @@
name = "system-icons"; name = "system-icons";
paths = paths =
(with pkgs; [ (with pkgs; [
gnome.adwaita-icon-theme adwaita-icon-theme
gnome.gnome-themes-extra gnome-themes-extra
]) ])
++ lib.optional (config.stylix.enable) config.stylix.cursor.package; ++ lib.optional (config.stylix.enable) config.stylix.cursor.package;