mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
profiles/sway: init from legacy
This commit is contained in:
parent
97afc505cb
commit
d72190bee6
11 changed files with 166 additions and 125 deletions
26
profiles/sway/theme.nix
Normal file
26
profiles/sway/theme.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue