add dolphin.nix
This commit is contained in:
parent
f64e2d8fb1
commit
8910559700
6 changed files with 22 additions and 2 deletions
|
|
@ -17,6 +17,7 @@
|
|||
};
|
||||
|
||||
home-manager.users.asakiyuki.programs = {
|
||||
dolphin.enable = true;
|
||||
bluetuith.enable = true;
|
||||
lutris.enable = true;
|
||||
hyprshot.enable = true;
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
settings = {
|
||||
theme = "catppuccin-mocha";
|
||||
|
||||
font-size = 10;
|
||||
font-size = 9;
|
||||
font-family = "SauceCodePro NFP Bold";
|
||||
|
||||
window-width = 230;
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
}: {
|
||||
home.packages =
|
||||
[
|
||||
(lib.mkIf config.programs.dolphin.enable config.programs.dolphin.package)
|
||||
(lib.mkIf config.programs.catppuccin.enable config.programs.catppuccin.package)
|
||||
|
||||
(lib.mkIf config.programs.antigravity.enable config.programs.antigravity.package)
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@
|
|||
inputs,
|
||||
...
|
||||
}: {
|
||||
imports = [
|
||||
./programs/dolphin.nix
|
||||
];
|
||||
|
||||
options.programs = {
|
||||
catppuccin = {
|
||||
enable = lib.mkEnableOption "catppuccin";
|
||||
|
|
|
|||
15
options/home/programs/dolphin.nix
Normal file
15
options/home/programs/dolphin.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}: {
|
||||
options.programs = {
|
||||
dolphin = {
|
||||
enable = lib.mkEnableOption "dolphin";
|
||||
package = lib.mkOption {
|
||||
type = lib.types.package;
|
||||
default = pkgs.kdePackages.dolphin;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
@ -82,7 +82,6 @@
|
|||
type = lib.types.listOf lib.types.package;
|
||||
default = with pkgs.kdePackages; [
|
||||
kservice
|
||||
dolphin
|
||||
kate
|
||||
qt5compat
|
||||
qtdeclarative
|
||||
|
|
|
|||
Reference in a new issue