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; [
|
home.packages = with pkgs; [
|
||||||
blueberry
|
blueberry
|
||||||
gnome.file-roller
|
file-roller
|
||||||
libnotify
|
libnotify
|
||||||
networkmanagerapplet
|
networkmanagerapplet
|
||||||
];
|
];
|
||||||
|
|
|
@ -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"];};
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue