Various tweaks
- use plasma.nix to set wallpaper & lookAndFeel - use unstable-os channel instead of unstable-pkgs in some more places for slightly more testing/stability - remove duplicate rustdesk from nixos-pulse sysPkgs as its already in home-mods/desktop
This commit is contained in:
parent
fac27f3408
commit
ca0ae5d585
4 changed files with 13 additions and 10 deletions
|
@ -7,10 +7,10 @@
|
||||||
services.easyeffects = {
|
services.easyeffects = {
|
||||||
enable = true;
|
enable = true;
|
||||||
# preset = "default";
|
# preset = "default";
|
||||||
package = pkgs.unstable-pkgs.easyeffects;
|
package = pkgs.unstable-os.easyeffects;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs.unstable-pkgs; [
|
home.packages = with pkgs.unstable-os; [
|
||||||
spotify
|
spotify
|
||||||
ncspot
|
ncspot
|
||||||
];
|
];
|
||||||
|
|
|
@ -13,18 +13,18 @@ in
|
||||||
{
|
{
|
||||||
programs.mpv = {
|
programs.mpv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.unstable-pkgs.mpv;
|
package = pkgs.unstable-os.mpv;
|
||||||
};
|
};
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
file.".background".source = wallpaperPath;
|
file.".background.png".source = wallpaperPath;
|
||||||
|
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
bitwarden
|
bitwarden
|
||||||
unstable-os.airshipper
|
unstable-os.airshipper
|
||||||
unstable-os.ardour
|
unstable-os.ardour
|
||||||
# blender
|
# blender
|
||||||
unstable-pkgs.brave
|
unstable-os.brave
|
||||||
unstable-os.cavalier
|
unstable-os.cavalier
|
||||||
unstable-os.freetube
|
unstable-os.freetube
|
||||||
unstable-os.filelight
|
unstable-os.filelight
|
||||||
|
@ -44,8 +44,8 @@ in
|
||||||
unstable-os.rustdesk
|
unstable-os.rustdesk
|
||||||
unstable-os.signal-desktop
|
unstable-os.signal-desktop
|
||||||
unstable-os.tutanota-desktop
|
unstable-os.tutanota-desktop
|
||||||
unstable-pkgs.thunderbird
|
unstable-os.thunderbird
|
||||||
unstable-pkgs.webcord-vencord
|
unstable-os.webcord-vencord
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
{
|
{ config, ... }: {
|
||||||
programs.plasma = {
|
programs.plasma = {
|
||||||
enable = true;
|
enable = true;
|
||||||
workspace.theme = "breeze-dark";
|
workspace = {
|
||||||
|
theme = "breeze-dark";
|
||||||
|
lookAndFeel = "org.kde.breezedark.desktop";
|
||||||
|
wallpaper = "${config.home.homeDirectory}/.background.png";
|
||||||
|
};
|
||||||
shortcuts = {
|
shortcuts = {
|
||||||
"KDE Keyboard Layout Switcher"."Switch to Next Keyboard Layout" = "Meta+Alt+K";
|
"KDE Keyboard Layout Switcher"."Switch to Next Keyboard Layout" = "Meta+Alt+K";
|
||||||
"kaccess"."Toggle Screen Reader On and Off" = "Meta+Alt+S";
|
"kaccess"."Toggle Screen Reader On and Off" = "Meta+Alt+S";
|
||||||
|
|
|
@ -161,7 +161,6 @@
|
||||||
environment.systemPackages = with pkgs.unstable-os; [
|
environment.systemPackages = with pkgs.unstable-os; [
|
||||||
android-tools
|
android-tools
|
||||||
android-udev-rules
|
android-udev-rules
|
||||||
rustdesk
|
|
||||||
my.spotube
|
my.spotube
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue