mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 02:23:55 -05:00
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
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:
parent
165f79da5e
commit
71499fb75d
|
@ -23,7 +23,7 @@
|
|||
|
||||
home.packages = with pkgs; [
|
||||
blueberry
|
||||
gnome.file-roller
|
||||
file-roller
|
||||
libnotify
|
||||
networkmanagerapplet
|
||||
];
|
||||
|
|
|
@ -38,7 +38,7 @@ in {
|
|||
|
||||
nemo.enable = lib.mkOption {
|
||||
description = "Cinnamon Nemo file manager.";
|
||||
default = cfg.defaultApps.fileManager == pkgs.cinnamon.nemo;
|
||||
default = cfg.defaultApps.fileManager == pkgs.nemo;
|
||||
type = lib.types.bool;
|
||||
};
|
||||
|
||||
|
@ -79,8 +79,8 @@ in {
|
|||
enable = lib.mkEnableOption "Declaratively set default apps and file associations.";
|
||||
audioPlayer = lib.mkPackageOption pkgs "audio player" {default = ["celluloid"];};
|
||||
editor = lib.mkPackageOption pkgs "text editor" {default = ["vscodium"];};
|
||||
fileManager = lib.mkPackageOption pkgs "file manager" {default = ["cinnamon" "nemo"];};
|
||||
imageViewer = lib.mkPackageOption pkgs "image viewer" {default = ["gnome" "eog"];};
|
||||
fileManager = lib.mkPackageOption pkgs "file manager" {default = ["nemo"];};
|
||||
imageViewer = lib.mkPackageOption pkgs "image viewer" {default = ["eog"];};
|
||||
pdfViewer = lib.mkPackageOption pkgs "pdf viewer" {default = ["evince"];};
|
||||
terminal = lib.mkPackageOption pkgs "terminal emulator" {default = ["kitty"];};
|
||||
terminalEditor = lib.mkPackageOption pkgs "terminal text editor" {default = ["vim"];};
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
in {
|
||||
config = lib.mkIf cfg.theme.enable {
|
||||
home.packages = [
|
||||
pkgs.gnome.adwaita-icon-theme
|
||||
pkgs.adwaita-icon-theme
|
||||
pkgs.liberation_ttf
|
||||
];
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
...
|
||||
}: {
|
||||
config = lib.mkIf config.ar.services.flatpak.enable {
|
||||
environment.systemPackages = with pkgs; [gnome.gnome-software];
|
||||
environment.systemPackages = with pkgs; [gnome-software];
|
||||
|
||||
fileSystems = let
|
||||
mkRoSymBind = path: {
|
||||
|
@ -18,8 +18,8 @@
|
|||
name = "system-icons";
|
||||
paths =
|
||||
(with pkgs; [
|
||||
gnome.adwaita-icon-theme
|
||||
gnome.gnome-themes-extra
|
||||
adwaita-icon-theme
|
||||
gnome-themes-extra
|
||||
])
|
||||
++ lib.optional (config.stylix.enable) config.stylix.cursor.package;
|
||||
|
||||
|
|
Loading…
Reference in a new issue