- Created common.nix for various configs - Created theme.nix for theme related configs - Moved some code to more logical files - Moved some standalone files into nix multiline strings, in order to inject data
12 lines
136 B
Nix
12 lines
136 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs.kdePackages; [
|
|
qtwayland
|
|
qtsvg
|
|
qt6ct
|
|
];
|
|
|
|
qt.enable = true;
|
|
}
|