Added: Dolphin
This commit is contained in:
parent
48adc7879c
commit
40565ea61a
8
home/file_manager/dolphin.nix
Normal file
8
home/file_manager/dolphin.nix
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
libsForQt5.dolphin
|
||||||
|
libsForQt5.kio-extras
|
||||||
|
kio-fuse
|
||||||
|
];
|
||||||
|
}
|
@ -3,7 +3,7 @@ let
|
|||||||
package = pkgs.hyprland;
|
package = pkgs.hyprland;
|
||||||
super = "SUPER";
|
super = "SUPER";
|
||||||
terminal = "kitty";
|
terminal = "kitty";
|
||||||
fileManager = "thunar";
|
fileManager = "dolphin";
|
||||||
menu = "~/.config/rofi/launchers/type-3/launcher.sh";
|
menu = "~/.config/rofi/launchers/type-3/launcher.sh";
|
||||||
power = "~/.config/rofi/powermenu/type-6/powermenu.sh";
|
power = "~/.config/rofi/powermenu/type-6/powermenu.sh";
|
||||||
in
|
in
|
||||||
|
9
home/themes/dark/default.nix
Normal file
9
home/themes/dark/default.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
imports = [
|
||||||
|
./qt.nix
|
||||||
|
./gtk.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
}
|
22
home/themes/dark/gtk.nix
Normal file
22
home/themes/dark/gtk.nix
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
gtk = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
theme = {
|
||||||
|
package = pkgs.flat-remix-gtk;
|
||||||
|
name = "Flat-Remix-GTK-Grey-Darkest";
|
||||||
|
};
|
||||||
|
|
||||||
|
iconTheme = {
|
||||||
|
package = pkgs.gnome.adwaita-icon-theme;
|
||||||
|
name = "Adwaita";
|
||||||
|
};
|
||||||
|
|
||||||
|
font = {
|
||||||
|
name = "Sans";
|
||||||
|
size = 12;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
19
home/themes/dark/qt.nix
Normal file
19
home/themes/dark/qt.nix
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
{ pkgs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
home.packages = with pkgs.libsForQt5; [
|
||||||
|
qt5ct
|
||||||
|
qtstyleplugin-kvantum
|
||||||
|
];
|
||||||
|
|
||||||
|
qt = {
|
||||||
|
enable = true;
|
||||||
|
platformTheme = "qtct";
|
||||||
|
style.name = "kvantum";
|
||||||
|
};
|
||||||
|
|
||||||
|
xdg.configFile = {
|
||||||
|
"Kvantum/ArcDark".source = "${pkgs.arc-kde-theme}/share/Kvantum/ArcDark";
|
||||||
|
"Kvantum/kvantum.kvconfig".text = "[General]\ntheme=ArcDark";
|
||||||
|
};
|
||||||
|
}
|
@ -98,7 +98,7 @@
|
|||||||
programs.dconf.enable = true;
|
programs.dconf.enable = true;
|
||||||
|
|
||||||
|
|
||||||
programs.xfconf.enable = true;
|
/*programs.xfconf.enable = true;
|
||||||
services.gvfs.enable = true;
|
services.gvfs.enable = true;
|
||||||
services.tumbler.enable = true;
|
services.tumbler.enable = true;
|
||||||
programs.thunar = {
|
programs.thunar = {
|
||||||
@ -107,7 +107,7 @@
|
|||||||
thunar-archive-plugin
|
thunar-archive-plugin
|
||||||
thunar-volman
|
thunar-volman
|
||||||
];
|
];
|
||||||
};
|
};*/
|
||||||
|
|
||||||
# Virtualisation
|
# Virtualisation
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
|
@ -11,7 +11,7 @@
|
|||||||
|
|
||||||
../../home/hyprland # Window Manager
|
../../home/hyprland # Window Manager
|
||||||
|
|
||||||
../../home/file_manager/thunar.nix # File Manager
|
../../home/file_manager/dolphin.nix # File Manager
|
||||||
|
|
||||||
../../home/programs/dev # Dev Tools
|
../../home/programs/dev # Dev Tools
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user