profiles/sway: init from legacy

This commit is contained in:
Felix Buehler 2023-03-19 12:38:08 +01:00
parent 97afc505cb
commit d72190bee6
11 changed files with 166 additions and 125 deletions

26
profiles/sway/theme.nix Normal file
View file

@ -0,0 +1,26 @@
{ config, lib, pkgs, ... }:
let
cfg = config.my.profiles.sway-theme;
in
{
options.my.profiles.sway-theme = with lib; {
enable = mkEnableOption "sway-theme profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
gtk-engine-murrine
gtk_engines
gsettings-desktop-schemas
lxappearance
qgnomeplatform
numix-cursor-theme
numix-icon-theme
numix-icon-theme-circle
adwaita-qt
arc-kde-theme
arc-theme
];
qt5.platformTheme = "qt5ct";
};
}