15 lines
373 B
Nix
15 lines
373 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.stylix.nixosModules.stylix
|
|
../../themes/darkviolet.nix
|
|
../../themes/fonts/sauce-code-pro.nix
|
|
../../themes/cursors/banana-cursor.nix
|
|
];
|
|
stylix = {
|
|
enable = true;
|
|
image = ../../media/wallpaper.jpg;
|
|
homeManagerIntegration.autoImport = false;
|
|
homeManagerIntegration.followSystem = false;
|
|
};
|
|
}
|